AS错误和解决方法

一、AS错误:No toolchains found in the NDK toolchains folder for ABI with prefix: mipsel-linux-android

make例程,发现No toolchains found in the NDK toolchains folder for ABI with prefix: mipsel-linux-android错误。

缺少文件mipsel-linux-android-4.9和 mips64el-linux-android-4.9

网上找了个别人的网盘链接下载这两个文件,实在是得感谢这位分享的道友,不然又得找很久

链接: https://pan.baidu.com/s/1q2-LdMETIfXWI_1Uug_Wrg 提取码: e7ma

 

下载了文件后解压,然后将文件copy到C:\Users\scale\AppData\Local\Android\Sdk\ndk-bundle\toolchains目录

如果目录下没有这两个文件,直接copy就OK了,如果以前已有这两文件夹,则对比一下,将缺少的文件添上就OK了

重启android studio,重新make,通过了。

 
注意目录:ndk-bundle\toolchains

 

二、Missing Gradle Project Information

在使用Android studio 生成签名包的时候,经常会遇到以下问题。

Missing Gradle Project Information. Please check if the IDE successfully synchronized its state with the Gradle Project Model

解决方案: 
tools > Android > Sync Project with Gradle Files

 

 

 

 

 

 

 

 

你可能感兴趣的:(Android,Studio)