ABIs [armeabi, mips] are not supported for platform android NDK

前端 未结 4 1282
野趣味
野趣味 2021-02-06 02:10

I am using JNI code in my project with abiFilters like below

apply plugin: \'com.android.application\'

android {
    compileSdkVersion 28
    defa         


        
4条回答
  •  被撕碎了的回忆
    2021-02-06 02:46

    remove 'armebi' from abiFilters in your build.gradle file. armebi is no longer supported by the NDK. A correct list could be:

    ndk {
      abiFilters 'armeabi-v7a', 'arm64-v8a', 'x86', 'x86_64'
    }
    

提交回复
热议问题