与项目中的依赖项 'com.android.support:support-annotations' 冲突
Conflict with dependency 'com.android.support:support-annotations' in project
不久之后,我 return 使用了 Android Studio。
当我创建一个新项目时遇到这个问题
Error:Execution failed for task ':app:preDebugAndroidTestBuild'.
Conflict with dependency 'com.android.support:support-annotations' in project ':app'. Resolved versions for app (26.1.0) and test app (27.1.1) differ. See https://d.android.com/r/tools/test-apk-dependency-conflicts.html for details.
我找到了很多解决这个问题的方法,但 none 有效。
我的依赖项中有这些:
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'com.android.support:appcompat-v7:26.1.0'
implementation 'com.android.support.constraint:constraint-layout:1.1.0'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'com.android.support.test:runner:1.0.2'
androidTestImplementation 'com.android.support.test.espresso:espresso-core:2.2.2'
androidTestCompile 'com.android.support:support-annotations:27.1.1'
}
您需要为 appCompat 和 support-annotations 使用相同版本的支持库。因此,更改依赖项:
implementation 'com.android.support:appcompat-v7:26.1.0'
androidTestCompile 'com.android.support:support-annotations:27.1.1'
至
implementation 'com.android.support:appcompat-v7:27.1.1'
androidTestImplementation 'com.android.support:support-annotations:27.1.1'
然后,尝试 从 espresso 中排除 现有的支持注释:
androidTestImplementation('com.android.support.test.espresso:espresso-core:2.2.2', {
exclude group: 'com.android.support', module: 'support-annotations'
})
我遇到了 support-annotations 模块的相同版本冲突。
不同之处在于我试图降低测试库使用的版本。
dependencies {
def withoutSupportAnnotations = {exclude group: 'com.android.support', module: 'support-annotations'}
androidTestImplementation 'com.android.support.test:runner:1.0.2', withoutSupportAnnotations
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2', withoutSupportAnnotations}
这个可重复使用的变量帮助了我。
test:runner 和 espresso 使用相同版本的注释(27.2.1 在我的例子中)
不久之后,我 return 使用了 Android Studio。 当我创建一个新项目时遇到这个问题
Error:Execution failed for task ':app:preDebugAndroidTestBuild'.
Conflict with dependency 'com.android.support:support-annotations' in project ':app'. Resolved versions for app (26.1.0) and test app (27.1.1) differ. See https://d.android.com/r/tools/test-apk-dependency-conflicts.html for details.
我找到了很多解决这个问题的方法,但 none 有效。
我的依赖项中有这些:
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'com.android.support:appcompat-v7:26.1.0'
implementation 'com.android.support.constraint:constraint-layout:1.1.0'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'com.android.support.test:runner:1.0.2'
androidTestImplementation 'com.android.support.test.espresso:espresso-core:2.2.2'
androidTestCompile 'com.android.support:support-annotations:27.1.1'
}
您需要为 appCompat 和 support-annotations 使用相同版本的支持库。因此,更改依赖项:
implementation 'com.android.support:appcompat-v7:26.1.0'
androidTestCompile 'com.android.support:support-annotations:27.1.1'
至
implementation 'com.android.support:appcompat-v7:27.1.1'
androidTestImplementation 'com.android.support:support-annotations:27.1.1'
然后,尝试 从 espresso 中排除 现有的支持注释:
androidTestImplementation('com.android.support.test.espresso:espresso-core:2.2.2', {
exclude group: 'com.android.support', module: 'support-annotations'
})
我遇到了 support-annotations 模块的相同版本冲突。 不同之处在于我试图降低测试库使用的版本。
dependencies {
def withoutSupportAnnotations = {exclude group: 'com.android.support', module: 'support-annotations'}
androidTestImplementation 'com.android.support.test:runner:1.0.2', withoutSupportAnnotations
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2', withoutSupportAnnotations}
这个可重复使用的变量帮助了我。 test:runner 和 espresso 使用相同版本的注释(27.2.1 在我的例子中)