我正在尝试学习android studio。在此计算机(不是我的计算机)中,android studio版本为2.2.3
当我在gradle build中创建一个新项目时,发生错误。
错误:任务':app:processDebugResources'的执行失败。
错误:多个库的软件包名称为“ android.support.graphics.drawable”
我一直在寻找此错误一天。我在任何地方都找不到相同的主题,因此我必须打开此线程。感谢您的所有回答。
这是build.gradle(project:myapplication2)
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:2.2.3'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
jcenter()
maven {
url "https://maven.google.com"
}
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
这是build.gradle(module:app)
apply plugin: 'com.android.application'
android {
compileSdkVersion 28
buildToolsVersion "28.0.0"
defaultConfig {
applicationId "com.example.alicetin.myapplication"
minSdkVersion 15
targetSdkVersion 28
versionCode 1
versionName "1.0"
testInstrumentationRunner
"android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'),
'proguard-rules.pro'
}
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.android.support:appcompat-v7:28.+'
testCompile 'junit:junit:4.12'
}
答案 0 :(得分:8)
尝试
implementation 'com.android.support:appcompat-v7:27.1.1'
代替
compile 'com.android.support:appcompat-v7:28.+'
appcompat-v7版本28仍为 alpha
答案 1 :(得分:6)
尝试
classpath 'com.android.tools.build:gradle:3.2.1'
代替
classpath 'com.android.tools.build:gradle:2.2.3'
我遇到了同样的问题,并且对我有用。
答案 2 :(得分:4)
使用:
compile 'com.android.support:appcompat-v7:27.+'
代替:
compile 'com.android.support:appcompat-v7:28.+'
答案 3 :(得分:1)
“ com.android.support:appcompat-v7”取决于“ support-vector-drawable” 和 “ com.android.support:design”取决于“动画矢量可绘制”
将此添加到您的build.gradle:
sed
填充为:
configurations.all {
exclude module: 'animated-vector-drawable'
}
答案 4 :(得分:0)
尽管我的build.gradle(app)文件已经使用最新的生产版本的SDK,工具和库进行了更新,但我也遇到了同样的问题。
唯一要检查的是gradle版本,实际上有一个警告说有更新的gradle版本可用。请参考下图。
more than one library with 'android.support.graphics.drawable'
一旦我升级了gradle版本,该错误就得到解决。
因此,请将您的Gradle版本从2.2.3升级到更高版本。