On Wednesday, 1 January 2020 at 18:15:32 UTC, Adam D. Ruppe wrote:

i see you updated everything ! wow !! :))

just a note : i had to add a sourceSets instruction
```
android {
    ...
    defaultConfig {
    ...
    }
    sourceSets {
        main {
            // let gradle pack the shared library into apk
            jniLibs.srcDirs = ['./src/main/jniLibs']
        }
    }
    ...
}
```
in the build.gradle file (the one in app directory) of the test application

it didn't pack the library in the apk otherwise, in my setup (which is plain basic, probably not relevant anyway)



Reply via email to