首页 > 系统 > Android > 正文

android异常笔记

2019-11-08 00:33:13
字体:
来源:转载
供稿:网友
文章

15:java.lang.RuntimeException: Unable to start activity ComponentInfo{com.xxx.MainActivity}: java.lang.IllegalStateException: This app has been built with an incorrect configuration. Please configure your build for VectorDrawableCompat.

产生的原因是:com.android.support:appcompat-v7与rasterized vectors不兼容,gradle2.0及其之上,library的资源没有栅格化,所以不会发生这个问题

2. 解决方案:

1.在PRojectgradle中将gradle版本改为2.0或者之上

2. 再次运行,此时控制台输出异常:

[html] view plain copy 在CODE上查看代码片Warning:Gradle version 2.10 is required. Current version is 2.8. If using the gradle wrapper, try editing the distributionUrl in xxx/bbb/gradle-wrapper.properties to gradle-2.10-all.zip  按照路径所指出的地址,找到文件gradle-wrapper.properties,编辑最后一句版本号为日志中所输出的版本

[html]%20view%20plain%20copy%20派生到我的代码片distributionBase=GRADLE_USER_HOME  distributionPath=wrapper/dists  zipStoreBase=GRADLE_USER_HOME  zipStorePath=wrapper/dists  distributionUrl=https/://services.gradle.org/distributions/gradle-2.10-all.zip  

3. 再次运行,还是错误,原因是你还没有下载gradle-2.10

这时可以从网上下载一个gradle-2.10.zip并解压,然后放到AndroidStudiodd的默认gradle配置目录

然后再在AndroidStudio中做一下设置,如下图


发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表