Как мне заставить Apollo GraphQL работать в проекте Android с тестами Espresso? - PullRequest
0 голосов
/ 03 марта 2019

Я думаю, что это вопрос о зависимостях gradle, но я не совсем уверен.Кажется, существует несовместимость между следующими двумя пакетами:

    androidTestImplementation 'androidx.test.espresso:espresso-core:3.1.1'
    androidTestImplementation 'com.apollographql.apollo:apollo-runtime:1.0.0-alpha5'

Я получаю следующую ошибку, которая выглядит как невозможно устранить:

Cannot find a version of 'com.google.code.findbugs:jsr305' that satisfies the version constraints: 
   Dependency path 'TestApp:app:unspecified' --> 'androidx.test.espresso:espresso-core:3.1.1' --> 'com.google.code.findbugs:jsr305:2.0.1'
   Dependency path 'TestApp:app:unspecified' --> 'androidx.test.espresso:espresso-intents:3.1.1' --> 'androidx.test.espresso:espresso-core:3.1.1' --> 'com.google.code.findbugs:jsr305:2.0.1'
   Dependency path 'TestApp:app:unspecified' --> 'androidx.test.ext:truth:1.0.0' --> 'com.google.guava:guava:26.0-android' --> 'com.google.code.findbugs:jsr305:3.0.2'
   Dependency path 'TestApp:app:unspecified' --> 'com.apollographql.apollo:apollo-runtime:1.0.0-alpha5' --> 'com.nytimes.android:cache:2.0.2' --> 'com.google.code.findbugs:jsr305:3.0.1'
   Constraint path 'TestApp:app:unspecified' --> 'com.google.code.findbugs:jsr305' strictly '3.0.1' because of the following reason: debugRuntimeClasspath uses version 3.0.1
   Constraint path 'TestApp:app:unspecified' --> 'com.google.code.findbugs:jsr305' strictly '3.0.1' because of the following reason: debugRuntimeClasspath uses version 3.0.1
   Constraint path 'TestApp:app:unspecified' --> 'com.google.code.findbugs:jsr305' strictly '3.0.1' because of the following reason: debugRuntimeClasspath uses version 3.0.1

Мои полные зависимости:

    implementation fileTree(dir: 'libs', include: ['*.jar'])
    implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
    implementation 'androidx.appcompat:appcompat:1.0.2'
    implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
    implementation 'androidx.lifecycle:lifecycle-extensions:2.0.0'
    implementation 'com.apollographql.apollo:apollo-runtime:1.0.0-alpha5'
    implementation 'com.apollographql.apollo:apollo-espresso-support:1.0.0-alpha5'

    testImplementation 'io.kotlintest:kotlintest-runner-junit5:3.2.1'
    testImplementation 'com.nhaarman.mockitokotlin2:mockito-kotlin:2.1.0'
    testImplementation 'com.apollographql.apollo:apollo-runtime:1.0.0-alpha5'
    testImplementation 'com.apollographql.apollo:apollo-espresso-support:1.0.0-alpha5'

    androidTestImplementation 'androidx.test:runner:1.1.1'
    androidTestImplementation 'androidx.test.ext:junit:1.1.0'
    androidTestImplementation 'androidx.test.espresso:espresso-intents:3.1.1'
    androidTestImplementation 'androidx.test.espresso:espresso-core:3.1.1'
    androidTestImplementation 'androidx.test.ext:truth:1.0.0'
    androidTestImplementation 'com.nhaarman.mockitokotlin2:mockito-kotlin:2.1.0'
    androidTestImplementation 'com.apollographql.apollo:apollo-runtime:1.0.0-alpha5'
    androidTestImplementation 'com.apollographql.apollo:apollo-espresso-support:1.0.0-alpha5'

Возможно ли использовать Apollo и Espresso в одном проекте Android с каким-то обходным решением или решением этой проблемы, или это означает, что они вообще не могут работать вместе?

...