This library downloads in a zip format and extracts to an entire folder structure not a jar file.
https://github.com/mikiobraun/jblas-examples/blob/master/src/CG.java
I needed some help in getting this imported into android studio.
This library downloads in a zip format and extracts to an entire folder structure not a jar file.
https://github.com/mikiobraun/jblas-examples/blob/master/src/CG.java
I needed some help in getting this imported into android studio.
project/app/libs
directory (create libs folder under the application folder if it doesn't exist).Add the .jar file dependency to your app's build.gradle
file:
dependencies {
// ... other dependencies
compile files('libs/jblas-1.2.4.jar')
}