This app has been built with an incorrect configuration

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


1. 问题描述:android

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

错误以下:ide

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.gradle

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

 

2. 解决方案:spa

1.在projectgradle中将gradle版本改成2.0或者之上.net

 

 

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,编辑最后一句版本号为日志中所输出的版本orm

 

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。

相关文章
相关标签/搜索