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

前端 未结 4 1283
野趣味
野趣味 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:54

    armeabi are no longer supported by NDK. Remove armeabi from build gradle or replace with supported ABIs e.g 'x86'

提交回复
热议问题