Android碰到的

Error:Failed to find Build Tools revision 23.0.0Install Build Tools 23.0.0 and sync project

解决办法:下载所需要的安装包

Error:A problem occurred configuring project ':ejj-user'.

> The SDK Build Tools revision (23.0.0) is too low for project ':ejj-user'. Minimum required is 25.0.0

解决办法:升级tools版本25.0.0 

Error:(5) Error: "app_name" is not translated in "zh" (Chinese) [MissingTranslation]

解决办法:给需要的文件配置对应的语言包,创建values-zh,把警告的文件放入其中就可以,也可以删除其他配置多语言的包

Warning:warning: Ignoring InnerClasses attribute for an anonymous inner class

(com.alipay.android.phone.mrpc.core.DefaultRpcClient$1) that doesn't come with an

associated EnclosingMethod attribute. This class was probably produced by a

compiler that did not target the modern .class file format. The recommended

solution is to recompile the class from source, using an up-to-date compiler

and without specifying any "-target" type options. The consequence of ignoring

this warning is that reflective operations on this class will incorrectly

indicate that it is *not* an inner class.

解决办法:可以不用管,但是不建议隐藏警告

你可能感兴趣的:(Android碰到的)