libsupportjni.so files added in the project
Uncheck Enable advanced profiling option from
Run -> Edit Configurations -> Profiling -> Enable advanced profiling.
If you simply want to exclude the .so
files, can try below inside your android {}
of app/build.gradle
android {
...
packagingOptions {
exclude 'lib/x86/libsupportjni.so'
exclude 'lib/x86_64/libsupportjni.so'
exclude 'lib/armeabi-v7a/libsupportjni.so'
exclude 'lib/arm64-v8a/libsupportjni.so'
}
...
}
Adding the the previous answer, you can try 'Build > Clean Project' and then 'Build > Rebuild' after disabling 'Advanced Profiler'. It also reduced apk size.