菜单 学习猿地 - LMONKEY

VIP

开通学习猿地VIP

尊享10项VIP特权 持续新增

知识通关挑战

打卡带练!告别无效练习

接私单赚外块

VIP优先接,累计金额超百万

学习猿地私房课免费学

大厂实战课仅对VIP开放

你的一对一导师

每月可免费咨询大牛30次

领取更多软件工程师实用特权

入驻
7
0

Android gradle问题解决: This app has been built with an incorrect configuration. Please configure your build for VectorDrawableCompat

原创
05/13 14:22
阅读数 93876

1. 问题描述:

Android Studio在运行模拟器某些机型或者真机某些机型的时候发生闪退。

错误如下:

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. 再次运行,此时控制台输出异常: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,编辑最后一句版本号为日志中所输出的版本

 

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中做一下设置,如下图

 

 

最后再运行IDE, Ok一切搞定!!

 

发表评论

0/200
7 点赞
0 评论
收藏
为你推荐 换一批