【Android环境】No toolchains found in the NDK toolchains folder for ABI with prefix: arm-linux-androidea

今天在调试编译代码时,遇到报No toolchains found in the NDK toolchains folder for ABI with prefix: arm-linux-androideabi这个错误
在这里插入图片描述


* What went wrong:
Execution failed for task ':app:stripLocal_DebugDebugSymbols'.
> No toolchains found in the NDK toolchains folder for ABI with prefix: arm-linux-androideabi

* 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

Deprecated Gradle features were used in this build, making it incompatible with Gradle 6.0.
Use '--warning-mode all' to show the individual deprecation warnings.
See https://docs.gradle.org/5.4.1/userguide/command_line_interface.html#sec:command_line_warnings

报错原因:项目代码根目录下local.preperties中的ndk.dir=/Users/xxx/Library/Android/Sdk/ndk/23.0.7123448中配置的路径下,toolchains/路径下没有arm-linux-androideabi文件夹,本地代码编译时需要这里的文件。
解决方法:

  1. 查看项目代码根目录下local.preperties中的ndk.dir=/Users/xxx/Library/Android/Sdk/ndk/23.0.7123448中配置的路径下,toolchains/路径下面是否有arm-linux-androideabi文件夹,如果没有,可以下载一个ndk的zip包,把对应路径的arm-linux-androideabi拷贝到指定位置
  2. 也可以更换一个ndk版本,比如换成:ndk/22.0.6917172版本,这个版本的toolchains/路径下,有arm-linux-androideabi文件夹

另外可以参考这个地址的解决方法:https://blog.csdn.net/qq_24118527/article/details/82867864

猜你喜欢

转载自blog.csdn.net/weixin_45329445/article/details/114825837