2016-08-02 32 views

回答

0
  1. 下载jblas jar文件
  2. jar文件复制到project/app/libs目录(创建库的应用程序文件夹下的文件夹,如果不存在的话)。
  3. 添加.jar文件依赖于你的应用程序的build.gradle文件:安卓的

    dependencies { 
        // ... other dependencies 
        compile files('libs/jblas-1.2.4.jar') 
    } 
    
相关问题