我在Android Studio 2.2 Preview 1中使用Android App 创建了一个新项目,并在Google Messaging中使用了Backend模块。这是应用程序文件:apply plugin: 'com.android.application'android { compileSdkVersion 23 buildToolsVersion "23.0.3" defaultConfig { applicationId "com.xxx.xxx" minSdkVersion 15 targetSdkVersion 23 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:23.4.0' compile 'com.android.support.constraint:constraint-layout:1.0.0-alpha1' compile 'com.google.android.gms:play-services-gcm:9.0.0' testCompile 'junit:junit:4.12' androidTestCompile 'com.android.support.test.espresso:espresso-core:2.2.2' androidTestCompile 'com.android.support.test:runner:0.5' androidTestCompile 'com.android.support:support-annotations:23.4.0' compile project(path: ':backend', configuration: 'android-endpoints')}但它给:错误:与依赖项“ com.google.code.findbugs:jsr305”冲突。应用(1.3.9)和测试应用(2.0.1)的已解决版本不同。有关详情,请参见http://g.co/androidstudio/app-test-app-conflict。我是Android的新手,无法找到此错误。我如何解决它?
3 回答
喵喔喔
TA贡献1735条经验 获得超5个赞
在您的应用程序中build.gradle添加以下内容:
android {
configurations.all {
resolutionStrategy.force 'com.google.code.findbugs:jsr305:1.3.9'
}
}
强制Gradle仅针对所有依赖项编译您声明的版本号,无论依赖项声明了哪个版本号。
紫衣仙女
TA贡献1839条经验 获得超15个赞
这是由于浓缩咖啡。您可以将以下内容添加到您的应用中build.grade以减轻这种情况。
androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2') {
exclude group: 'com.google.code.findbugs'
}
- 3 回答
- 0 关注
- 1680 浏览
添加回答
举报
0/150
提交
取消