Android Studio 3.2.1解决错误信息"ABIs [armeabi] are not supported for platform. Supported A...

栏目: IOS · Android · 发布时间: 5年前

内容简介:在用问题发生的原因在于以前的代码在虽然可以简单的修改成

在用 Android Studio 3.2.1 导入以前的项目,进行编译的时候,报告如下错误信息:

FAILURE: Build failed with an exception.
 
* What went wrong:
A problem occurred configuring project ':app'.
> ABIs [armeabi] are not supported for platform. Supported ABIs are [arm64-v8a, armeabi-v7a, x86, x86_64].
 
* Try:
Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output. Run with --scan to get full insights.
 
* Get more help at https://help.gradle.org
 
BUILD FAILED in 0s

问题发生的原因在于以前的代码在 build.gradle 中指定了 abiFilters 'armeabi' ,但是从 NDK r17 版本开始,已经不支持 "armeabi、mips、mips64" 这三种 ABI 了。

虽然可以简单的修改成 abiFilters 'armeabi-v7a' ,来解决问题,但是我们更希望能有一个办法,在老版本的支持 abiFilters 'armeabi'NDK 上继续使用 abiFilters 'armeabi' 进行编译,用来兼容老设备。而在只支持 abiFilters 'armeabi-v7a' 的设备上,我们使用 abiFilters 'armeabi-v7a' 保证能编译通过。

我们通过执行 NDK 目录下的 ndk-which 输出的支持的 ABI 列表的方式获取当前的 NDK 是否支持 abiFilters 'armeabi' ,如果不支持,我们就设置为 abiFilters 'armeabi-v7a'

具体的操作如下图所示:

Android Studio 3.2.1解决错误信息

习惯于复制黏贴的懒人们,可以在下面复制代码:

def ndkWhich = new File(getNdkDirectory(),"ndk-which")
// from NDK r17 "armeabi、mips、mips64" not supported
try {
    def ndkWhichExec = ndkWhich.toString().execute() //ndk-which not exists cause exception
    def abiOutput = new ByteArrayOutputStream()
    ndkWhichExec.waitForProcessOutput(abiOutput, null)
    abiOutput = abiOutput.toString().toUpperCase()
    if (abiOutput.contains('USAGE:') && abiOutput.contains("ABI")) {
        if (abiOutput.contains("'armeabi'")) {
            abiFilters 'armeabi'
        } else {
            abiFilters 'armeabi-v7a'
        }
    } else {
        abiFilters 'armeabi'
    }
} catch (Exception  e) {
    abiFilters 'armeabi'
}

参考链接


以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持 码农网

查看所有标签

猜你喜欢:

本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们

Web Services原理与研发实践

Web Services原理与研发实践

顾宁刘家茂柴晓路 / 机械工业出版社 / 2006-1 / 33.00元

本书以web services技术原理为主线,详细解释、分析包括XML、XML Schema、SOAP、WSDL、UDDI等在内在的web Services核心技术。在分析、阐述技术原理的同时,结合作者在Web Services领域的最新研究成果,使用大量的实例帮助读者深刻理解技术的设计思路与原则。全书共有9章,第1章主要介绍web Services的背景知识;第2-7章着重讲解webServic......一起来看看 《Web Services原理与研发实践》 这本书的介绍吧!

随机密码生成器
随机密码生成器

多种字符组合密码

HTML 编码/解码
HTML 编码/解码

HTML 编码/解码

URL 编码/解码
URL 编码/解码

URL 编码/解码