Кордова ФКМ на Android - PullRequest
       1

Кордова ФКМ на Android

0 голосов
/ 24 декабря 2018

У меня есть эта ошибка, кто-нибудь может помочь мне решить эту проблему?

Error:Execution failed for task ':app:processDebugGoogleServices'.

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

   dependencies {
      implementation fileTree(include: '*.jar', dir: 'libs')
      // SUB-PROJECT DEPENDENCIES START
        implementation(project(path: ":CordovaLib"))
        compile "com.android.support:support-v4:24.1.1+"
        compile "com.soundcloud.android:android-crop:1.0.0@aar"
        compile "com.google.android.gms:play-services-maps:15.0.1"
        compile "com.google.android.gms:play-services-location:15.0.1"
        compile "com.android.support:support-core-utils:27.+"
        compile "com.android.support:support-annotations:27.+"
        compile "com.android.support:appcompat-v7:23+"
        compile "com.google.firebase:firebase-core:10+"
        compile "com.google.firebase:firebase-messaging:10+"
        // SUB-PROJECT DEPENDENCIES END
    }

1 Ответ

0 голосов
/ 24 декабря 2018

Для SDK версий 15 и ниже все SDK Firebase и Play Services должны быть одной и той же версии.Итак:

dependencies {
  implementation fileTree(include: '*.jar', dir: 'libs')
  // SUB-PROJECT DEPENDENCIES START
    implementation(project(path: ":CordovaLib"))
    compile "com.android.support:support-v4:24.1.1+"
    compile "com.soundcloud.android:android-crop:1.0.0@aar"
    compile "com.google.android.gms:play-services-maps:15.0.1"
    compile "com.google.android.gms:play-services-location:15.0.1"
    compile "com.android.support:support-core-utils:27.+"
    compile "com.android.support:support-annotations:27.+"
    compile "com.android.support:appcompat-v7:23+"
    compile "com.google.firebase:firebase-core:15.0.1"
    compile "com.google.firebase:firebase-messaging:15.0.1"
    // SUB-PROJECT DEPENDENCIES END
}
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...