gpt4 book ai didi

android - 将 espresso-contrib 添加到 androidTestImplementation 会产生依赖性/约束错误

转载 作者:塔克拉玛干 更新时间:2023-11-03 00:55:25 29 4
gpt4 key购买 nike

我正在学习有关 PluralSight 的旧教程:Enhancing the Android Application Experience .由于我使用的是较新版本的 IDE,因此遇到了一些问题。大多数我可以在 SO 修复,但我被困住了,没有足够的经验超出我所知道的。

在设置一些单元测试时,我必须将 androidTestImplementation ('com.android.support.test.espresso:espresso-contrib:3.0.2' 添加到 gradle 文件中。讲师逃避这造成了一些问题,因为

The espresso-contrib library is actually relying on different versions of certain classes than we are using in our application. Cause remember that gradle takes care of resolving down chain dependencies

模块中的错误体验不是我在下面得到的。通过在 TestCompile 中添加对库的显式调用来修复它们。我做同样的事情并不能解决问题。

Cannot find a version of 'com.android.support:appcompat-v7' that satisfies the version constraints: 
Dependency path 'NoteKeeper:app:unspecified' --> 'com.android.support:appcompat-v7:24.2.1'
Constraint path 'NoteKeeper:app:unspecified' --> 'com.android.support:appcompat-v7:{strictly 24.2.1}' because of the following reason: debugRuntimeClasspath uses version 24.2.1
Dependency path 'NoteKeeper:app:unspecified' --> 'com.android.support:appcompat-v7:24.2.1'
Dependency path 'NoteKeeper:app:unspecified' --> 'com.android.support:appcompat-v7:24.2.1'
Constraint path 'NoteKeeper:app:unspecified' --> 'com.android.support:appcompat-v7:{strictly 24.2.1}' because of the following reason: debugRuntimeClasspath uses version 24.2.1
Dependency path 'NoteKeeper:app:unspecified' --> 'com.android.support:appcompat-v7:24.2.1'
Dependency path 'NoteKeeper:app:unspecified' --> 'com.android.support:appcompat-v7:24.2.1'
Constraint path 'NoteKeeper:app:unspecified' --> 'com.android.support:appcompat-v7:{strictly 24.2.1}' because of the following reason: debugRuntimeClasspath uses version 24.2.1
Dependency path 'NoteKeeper:app:unspecified' --> 'com.android.support:appcompat-v7:24.2.1'
Dependency path 'NoteKeeper:app:unspecified' --> 'com.android.support:appcompat-v7:24.2.1'
Constraint path 'NoteKeeper:app:unspecified' --> 'com.android.support:appcompat-v7:{strictly 24.2.1}' because of the following reason: debugRuntimeClasspath uses version 24.2.1
Dependency path 'NoteKeeper:app:unspecified' --> 'com.android.support:appcompat-v7:24.2.1'
Dependency path 'NoteKeeper:app:unspecified' --> 'com.android.support:appcompat-v7:24.2.1'
Constraint path 'NoteKeeper:app:unspecified' --> 'com.android.support:appcompat-v7:{strictly 24.2.1}' because of the following reason: debugRuntimeClasspath uses version 24.2.1
Dependency path 'NoteKeeper:app:unspecified' --> 'com.android.support:appcompat-v7:24.2.1'
Dependency path 'NoteKeeper:app:unspecified' --> 'com.android.support:appcompat-v7:24.2.1'
Constraint path 'NoteKeeper:app:unspecified' --> 'com.android.support:appcompat-v7:{strictly 24.2.1}' because of the following reason: debugRuntimeClasspath uses version 24.2.1
Dependency path 'NoteKeeper:app:unspecified' --> 'com.android.support:appcompat-v7:24.2.1'
Dependency path 'NoteKeeper:app:unspecified' --> 'com.android.support:design:27.1.1' --> 'com.android.support:appcompat-v7:27.1.1'
Dependency path 'NoteKeeper:app:unspecified' --> 'com.android.support:appcompat-v7:24.2.1'
Constraint path 'NoteKeeper:app:unspecified' --> 'com.android.support:appcompat-v7:{strictly 24.2.1}' because of the following reason: debugRuntimeClasspath uses version 24.2.1
Dependency path 'NoteKeeper:app:unspecified' --> 'com.android.support:appcompat-v7:24.2.1'
Dependency path 'NoteKeeper:app:unspecified' --> 'com.android.support:appcompat-v7:24.2.1'
Constraint path 'NoteKeeper:app:unspecified' --> 'com.android.support:appcompat-v7:{strictly 24.2.1}' because of the following reason: debugRuntimeClasspath uses version 24.2.1
Dependency path 'NoteKeeper:app:unspecified' --> 'com.android.support:appcompat-v7:24.2.1'

我的应用程序等级:

apply plugin: 'com.android.application'

android {
compileSdkVersion 24
defaultConfig {
applicationId "com.jwhh.jim.notekeeper"
minSdkVersion 24
targetSdkVersion 24
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}

dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'com.android.support:support-annotations:28.0.0'
implementation 'com.android.support:appcompat-v7:24.2.1'
implementation 'com.android.support:design:24.2.1'
implementation 'com.android.support.constraint:constraint-layout:1.1.3'
implementation 'com.android.support:recyclerview-v7:24.2.1'
implementation 'com.android.support:cardview-v7:24.2.1'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'com.android.support.test:runner:1.0.2'
androidTestImplementation 'com.android.support.test:rules:1.0.2'
androidTestImplementation ('com.android.support.test.espresso:espresso-core:3.0.2', {
exclude group: 'com.android.support', module: 'support-annotations'
})
androidTestImplementation 'com.android.support.test.espresso:espresso-contrib:3.0.2'
androidTestImplementation 'com.android.support:appcompat-v7:24.2.1'
androidTestImplementation 'com.android.support:design:24.2.1'
androidTestImplementation 'com.android.support:cardview-v7:24.2.1'
}

我在这里四处寻找解决方案,但没有找到合适的解决方案。

Resources error when I add espresso-contrib谈到更改SDK版本。我所做的一切都是为了匹配 24,所以我不认为改变会让事情变得更好。也许我使用了错误的意式浓缩咖啡?

Espresso test aren't running after adding espresso-contrib library in gradle建议我需要添加一些排除项,我尝试如下,没有明显区别。另外,不完全确定这是要做什么。

    androidTestImplementation ('com.android.support.test.espresso:espresso-contrib:3.0.2', {
exclude group: 'com.android.support', module: 'appcompat'
exclude group: 'com.android.support', module: 'support-v4'
exclude module: 'recyclerview-v7'
})

我查了一下 Espresso Setup但在 espresso-contrib

方面迷路了,没有发现任何注意事项

在用户的建议下,我从 androidTestImplementation 中删除了额外的依赖项,但我仍然遇到错误

dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'com.android.support:support-annotations:28.0.0'
implementation 'com.android.support:appcompat-v7:24.2.1'
implementation 'com.android.support:design:24.2.1'
implementation 'com.android.support.constraint:constraint-layout:1.1.3'
implementation 'com.android.support:recyclerview-v7:24.2.1'
implementation 'com.android.support:cardview-v7:24.2.1'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'com.android.support.test:runner:1.0.2'
androidTestImplementation 'com.android.support.test:rules:1.0.2'
androidTestImplementation ('com.android.support.test.espresso:espresso-core:3.0.2', {
exclude group: 'com.android.support', module: 'support-annotations'
})
androidTestImplementation 'com.android.support.test.espresso:espresso-contrib:3.0.2'
}

Cannot find a version of 'com.android.support:appcompat-v7' that satisfies the version constraints:...

最佳答案

基本上,错误告诉您代码的不同部分(主要代码和 Android 测试代码)取决于支持库的不同版本,在本例中为 24.2.1 和 27.1.1。

这是什么意思?

假设您有一些类 InternalImportantThing。而您的代码取决于该类的 v1。然后添加一些依赖于该类的 v2 的库(espresso-contrib)。

问题是两个类都具有相同的“路径”。例如。 com.myapp.InternalImportantThing。而且您不能将它们都放在同一个应用程序中,因为在这种情况下类加载器会变得疯狂:“选择哪个类:com.myapp.InternalImportantThingcom.myapp。 InternalImportantThing?"(是的,它们是一样的 - 这就是问题所在)。

这就是您必须解决冲突的原因。有不同的方法可以做到这一点,我们稍后再讨论。

解析后会发生什么?

这取决于。如果 v1 和 v2 具有相同的公共(public) API 并且仅在实现上有所不同,那么一切都可能运行良好。或者可能不会,如果这些方法对相同的输入产生不同的结果。但是,如果 v2 缺少 v1 的一些 api,而 v1 没有 v2 的 smth - 你就有麻烦了。因为您需要选择一个,而您的应用程序或依赖库可能会丢失它们所依赖的内容。

关于它的几个链接

Gradle conflicts resolution

Troubleshoot dependencies resolution

后一个很长,在你的情况下,你可以强制你的主应用程序使用最新版本的支持库(比如 implementation 'com.android.support:appcompat-v7:28.0.0')。这可能需要您同时更新compileSdk/targetSdk,请注意警告和错误。

您可以找到最新版本 here或者使用 Android Studio 中的助手。

唯一的提示是尽量不要从 AndroidX 包中导入任何东西,因为您不能同时拥有 AndroidX 和非 AndroidX 依赖项。很容易找到它们:它们以 androidx 开头,您可以找到示例 here

关于android - 将 espresso-contrib 添加到 androidTestImplementation 会产生依赖性/约束错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56352681/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com