I want to use JniLibs in my application. I have added a folder jniLibs under app/src/main. The folder jniLibs contains armeabi, armeabi-v7a, x86 and these folder contains .so files.
I have written the below code in build.gradle file:
sourceSets.main {
jniLibs.srcDir 'libs'
jni.srcDirs = [] //disable automatic ndk-build call
}
When I run my application is says : No implementation found for native.
I am new in implementing jniLibs in android studio, can you please help me. Thank you so much in advance for your help.