ошибка синхронизации с 1 предупреждением. Исправьте конфликт версий, либо обновив версию плагина google-services до 16.0.4. - PullRequest
0 голосов
/ 27 октября 2018

Я перепробовал все возможные методы, но он все равно не синхронизировался, пожалуйста, помогите.Ниже приведен весь файл Gradle, я попытался объединить ядро ​​Firebase и обмен сообщениями, но он все еще показывает ошибку

dependencies {
    implementation fileTree(dir: 'libs', include: ['*.jar'])
    androidTestImplementation('com.android.support.test.espresso:espresso-core:3.0.2', {
        exclude group: 'com.android.support', module: 'support-annotations'
    })


    implementation 'com.android.support:appcompat-v7:27.1.1'
    implementation 'com.android.support:design:27.1.1'
    implementation 'com.android.support.constraint:constraint-layout:1.1.3'
    implementation 'com.google.firebase:firebase-core:16.0.4'
    implementation 'com.google.firebase:firebase-auth:16.0.5'
    implementation 'com.google.firebase:firebase-messaging:17.3.4'
    implementation 'com.google.firebase:firebase-database:16.0.4'
    implementation 'com.android.support:support-v4:27.1.1'
    implementation 'de.hdodenhof:circleimageview:2.1.0'
    implementation 'com.theartofdev.edmodo:android-image-cropper:2.7.0'
    implementation 'com.google.firebase:firebase-storage:16.0.4'
    implementation 'com.squareup.picasso:picasso:2.5.2'
    implementation 'com.firebaseui:firebase-ui-database:1.1.1'
    implementation 'id.zelory:compressor:2.1.0'
    implementation 'com.squareup.okhttp:okhttp:2.5.0'
    testImplementation 'junit:junit:4.12'
    implementation 'com.android.support:recyclerview-v7:27.1.1'
    implementation 'com.github.arturogutierrez:badges:1.0.5@aar'
    implementation 'com.github.broakenmedia:CharCountTextView:v1.0'
    implementation 'com.github.broakenmedia:MultiContactPicker:1.8.3'
    implementation 'com.github.lguipeng:BubbleView:1.0.1'
    implementation 'com.rockerhieu.emojicon:library:1.3.3'
    implementation 'com.android.support:cardview-v7:27.1.1'

}


apply plugin: 'com.google.gms.google-services'

Ниже приведено сообщение об ошибке

Пожалуйста, исправьте конфликт версий либообновление версии плагина google-services (информация о последней версии доступна по адресу https://bintray.com/android/android-tools/com.google.gms.google-services/) или обновление версии com.google.android.gms до 16.0.4.

Ответы [ 2 ]

0 голосов
/ 27 октября 2018

Вы используете разные версии FireBase-зависимостей. Это может быть причиной неудачи. Обновите google-services до последней версии и используйте ту же версию для зависимостей Firebase.

// as you can see different versions for firebase dependecies
implementation 'com.google.firebase:firebase-core:16.0.4'
implementation 'com.google.firebase:firebase-auth:16.0.5'
implementation 'com.google.firebase:firebase-messaging:17.3.4'
implementation 'com.google.firebase:firebase-database:16.0.4'

Либо используйте 16.0.4, либо последнюю версию зависимостей firebase.

0 голосов
/ 27 октября 2018

В вашем проекте build.gradle файл замените на следующую строку:

buildscript {

    repositories {
        google()
        jcenter()
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:3.2.1'
        compile 'com.google.gms:google-services:4.2.0'//the latest version is 4.2.0

    }
}
...