Write the code below in the build.gradle file of your application.
android { ... defaultConfig { ... ndk { abiFilters "armeabi-v7a", "x86","armeabi" } packagingOptions { exclude "lib/arm64-v8a/mysofile.so" } } }
Replace mysofile.so with your .so file
source share