【发布时间】:2019-11-12 21:44:38
【问题描述】:
我在 android studio 中添加依赖项时遇到问题。我要补充
com.android.support:design:28.0.0' 到依赖项
但我收到这样的错误
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
testImplementation 'junit:junit:4.12'
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
implementation 'com.google.android.material:material:1.0.0'
implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
implementation 'androidx.legacy:legacy-support-v4:1.0.0'
implementation 'com.android.support:design:28.0.0'
implementation 'com.android.support:support-v4:28.0.0'
}
ERROR: Manifest merger failed with multiple errors, see logs
【问题讨论】:
-
嗨,请把你得到的所有依赖贴在dependencies下
-
正确格式化代码(使用
CTRL+K或反引号)并发布清单合并日志:) -
我已经发布了所有依赖@Dor