I am using JNI code in my project with abiFilters like below
abiFilters
apply plugin: \'com.android.application\' android { compileSdkVersion 28 defa
remove 'armebi' from abiFilters in your build.gradle file. armebi is no longer supported by the NDK. A correct list could be:
'armebi
build.gradle
ndk { abiFilters 'armeabi-v7a', 'arm64-v8a', 'x86', 'x86_64' }