我更新了studio(2023.1.1)和AGP(8.2),没有更改其他任何内容。
以前的版本没有问题。
现在该项目将无法构建,原因如下:
Caused by: com.android.builder.errors.EvalIssueException: [CXX1201]
ABIs [armeabi, mips, mips64, riscv64] are not supported for platform.
Supported ABIs are [arm64-v8a, armeabi-v7a, x86, x86_64].
他在哪里找到它们......在项目中没有指定任何 ABI,除了:
splits {
abi {
enable true
include 'x86', 'armeabi-v7a', 'x86_64', 'arm64-v8a'
universalApk true
}
}
我尝试注册过滤器 - 输出是相同的
ndk {
abiFilters 'arm64-v8a', 'armeabi-v7a', 'x86', 'x86_64'
}