我想在我的build.gradle
文件中添加这两个库,但我收到此错误,我现在该怎么办?
dependencies {
compile 'com.android.support:multidex:1.0.1'
compile 'com.android.support:appcompat-v7:25.0.1'
}
错误:Android Studio意外的顶级异常
更新:屏幕截图 Error
答案 0 :(得分:-1)
compile (':xyzSDK') {
exclude group: 'com.android.support', module: 'support-v4'
}