请帮助我。我的Android项目显示此错误:错误:任务':app:processDebugResources'执行失败。 >错误:多个库的软件包名称为“ android.support.graphics.drawable”
如何解决这个问题?
build.gradle
apply plugin: 'com.android.application'
android {
compileSdkVersion 28
buildToolsVersion '28.0.1'
defaultConfig {
applicationId "net.gurujibd.ajkerkhobor"
minSdkVersion 15
targetSdkVersion 28
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
productFlavors {
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.android.support:appcompat-v7:28.+'
compile 'com.android.support:cardview-v7:28+'
compile 'com.android.support:support-v4:28+'
compile 'com.google.android.gms:play-services-ads:9.0.2'
}
答案 0 :(得分:0)
首先将所有28+
更改为28.0.0-alpha3
或更低的版本,例如27.1.1
然后将9.0.2
更改为最新版本15.0.0
答案 1 :(得分:0)
通过更新所有要求解决了此问题。谢谢