Is it possible to link multiple native libraries(written in C) in build.gradle like this:
externalNativeBuild {
ndkBuild {
path 'src/main/c/Lib1Android.mk'
path 'src/main/c/Lib2Android.mk'
}
}
When I use this my JNI file can't see native functions from Lib1 :(