Введите com.google.android.gms.common.internal.zzf, на который ссылаются как на интерфейс из `com.google.android.gms.internal.zzcdb`

#java #android #gradle #android-gradle-plugin #gradle-plugin

#java — язык #Android #градация #android-gradle-plugin #gradle-плагин #java #gradle

Вопрос:

недавно я включил ExoPlayer в свой проект, но после внедрения библиотеки получаю следующую ошибку .

 Error: Type com.google.android.gms.common.internal.zzf is referenced as an interface from `com.google.android.gms.internal.zzcdb`.
Caused by: com.android.tools.r8.utils.AbortException: Error: Type com.google.android.gms.common.internal.zzf is referenced as an interface from `com.google.android.gms.internal.zzcdb`.
Caused by: com.android.tools.r8.CompilationFailedException: Compilation failed to complete
Caused by: com.android.builder.dexing.DexArchiveBuilderException: Error while dexing.
Caused by: com.android.builder.dexing.DexArchiveBuilderException: Failed to process 
  

вот моя зависимость

 dependencies {
    implementation 'ai.devsupport.instamojo:instamojolib:0.1.5'
    implementation fileTree(include: ['*.jar'], dir: 'libs')
    implementation files('libs/javaluator-3.0.1.jar')
    implementation files('libs/PGSDK_V2.0.jar')
    implementation 'com.github.lecho:hellocharts-android:v1.5.8'
    implementation 'com.android.support:multidex:1.0.2'
    implementation 'com.android.support:appcompat-v7:26.0.1'
    implementation 'com.android.support:support-v4:26.0.1'
    implementation 'com.google.code.gson:gson:2.8.1'
    implementation 'com.google.firebase:firebase-core:16.0.7'
    implementation 'com.google.firebase:firebase-auth:16.1.0'
    implementation 'com.google.firebase:firebase-messaging:17.3.4'
    implementation 'com.google.android.gms:play-services:12.0.1'

    implementation 'com.google.android.gms:play-services-auth:16.0.0'
    implementation 'com.google.apis:google-api-services-people:v1-rev63-1.22.0'
    implementation 'com.stripe:stripe-android:5.0.0'
    implementation 'com.facebook.android:facebook-android-sdk:5.0.3'
    implementation 'com.android.volley:volley:1.1.1'
    implementation 'org.jsoup:jsoup:1.10.3'
    implementation 'com.facebook.fresco:fresco:1.13.0'
    implementation 'com.amazonaws:aws-android-sdk-s3:2.2. '
    implementation 'com.amazonaws:aws-android-sdk-cognito:2.2. '
    implementation 'com.amazonaws:aws-android-sdk-cognitoidentityprovider:2.2. '
    implementation files('libs/httpmime-4.1.jar')
    implementation 'com.github.barteksc:android-pdf-viewer:2.8.2'
    implementation 'com.github.iwgang:countdownview:2.1.6'
    implementation('com.payumoney.sdkui:plug-n-play:1.5.0')
            {
                transitive = true;
                exclude module: 'payumoney-sdk'
            }
    implementation 'com.payumoney.core:payumoney-sdk:7.5.0'
    implementation('com.google.android.exoplayer:exoplayer:2.11.7') {
        exclude group: 'androidx.core', module: 'core'
        exclude group: 'androidx.media', module: 'media'
    }
}
  

примените плагин: ‘com.google.gms.google-services’

файл gradle сборки на уровне проекта

 buildscript {
    repositories {
        jcenter()
        google()
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:3.3.1'
        classpath 'com.google.gms:google-services:4.0.1'
    }
}

allprojects {
    repositories {
        jcenter()
        google()
    }
}
  

то, что я пробовал, но потерпел неудачу:
1 . я попытался изменить версию зависимости ядра firebase core
2 . путь к классу для Google в project build.gradle
3 . версия зависимости exoplayer
4. я думаю, что все ответы на вопрос о переполнении стека доступны в Интернете

Спасибо.

Комментарии:

1. 3 месяца спустя вы случайно нашли решение?