错误:找不到参数armeabi-v7a()的方法[arm64-v8a]
我试图更改我的应用程序以支持32位和64位,但是当我这样更改 build.gradle 时。
I tried to change my application to support 32-bit and 64-bit, but when i change the build.gradle like this.
android {
compileSdkVersion 28
defaultConfig {
applicationId "id.co.poslogistics.agendakegiatan"
minSdkVersion 15
targetSdkVersion 28
versionCode 1
versionName "1.0"
ndk.abiFilters = 'armeabi-v7a' 'arm64-v8a' 'x86' 'x86_64'
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
但是当我抓到它时,错误将显示如下
but when i gradle it, the error will show like this
错误:
在DefaultConfig_Decorated {name = main,Dimensions = null,minSdkVersion = DefaultApiVersion {mApiLevel = 15,mCodename ='null)上找不到参数[arm64-v8a]的方法armeabi-v7a() '},targetSdkVersion = DefaultApiVersion {mApiLevel = 28,mCodename ='nu ll'},renderscriptTargetApi = null,renderscriptSupportModeEnabled = null,renderscriptSupportModeBlasEnabled = null,renderscriptNdkModeEnabled = null,versionCode = 1,versionName = 1.0,applicationId = id.co.poslogistics.agendakegiatan,testApplicationId = null,testInstrumentationRunner = null,testInstrumentation { ,testHandleProfiling = null,testFunctionalTest = null,signingConfig = null,resConfig = null,mBuildConfigFields = {},mResValues = {},mProguardFiles = [],mConsumerProguardFiles = [],mManifestPlaceholders = {},mWearAppUnbundled = null}类型。 android.build.gradle.internal.dsl.DefaultConfig。
Could not find method armeabi-v7a() for arguments [arm64-v8a] on DefaultConfig_Decorated{name=main, dimension=null, minSdkVersion=DefaultApiVersion{mApiLevel=15, mCodename='null'}, targetSdkVersion=DefaultApiVersion{mApiLevel=28, mCodename='null'}, renderscriptTargetApi=null, renderscriptSupportModeEnabled=null, renderscriptSupportModeBlasEnabled=null, renderscriptNdkModeEnabled=null, versionCode=1, versionName=1.0, applicationId=id.co.poslogistics.agendakegiatan, testApplicationId=null, testInstrumentationRunner=null, testInstrumentationRunnerArguments={}, testHandleProfiling=null, testFunctionalTest=null, signingConfig=null, resConfig=null, mBuildConfigFields={}, mResValues={}, mProguardFiles=[], mConsumerProguardFiles=[], mManifestPlaceholders={}, mWearAppUnbundled=null} of type com.android.build.gradle.internal.dsl.DefaultConfig.
有人可以帮我吗。谢谢
您的配置
ndk.abiFilters = 'armeabi-v7a' 'arm64-v8a' 'x86' 'x86_64'
应为
ndk.abiFilters 'armeabi-v7a', 'arm64-v8a', 'x86', 'x86_64'
或
ndk {
abiFilters 'armeabi-v7a', 'arm64-v8a', 'x86' ,'x86_64'
}