2016-08-02 31 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') 
    } 
    
相關問題