java.lang.UnsatisfiedLinkError: dlopen failed:
问题 I am facing the issue while I am adding the .so file in my project, from the other ans, I have tried with different solutions but not any solution help me out. case: 1 I had tried to put my .so in src/main/jniLibs and in the gradle file I had added below lines, but getting the same error. android { sourceSets.main.jni.srcDirs = [] } case:2 I had added cpp folder with native-lib.cpp and in gradle added below code: defaultConfig { ndk { abiFilters "armeabi", "armeabi-v7a", "x86", "mips" } }