I've added the following to my build.gradle to include pre-compiled binaries and shared objects in my jni folder.
sourceSets {
main {
jniLibs.srcDir file('jni/')
}
}
But when I build and inspect the APK, the .so files are included, but the binaries are not. Is it possible for gradle to bundle the compiles binaries?