Не удалось разрешить: com.google.android.gms: play-services-basement: 12.0.1 - PullRequest
0 голосов
/ 11 июня 2018

Вот мои зависимости

dependencies {

        compile project(':react-native-fcm')
        // compile 'com.google.firebase:firebase-core:11.2.0' //FCM - this decides your firebase SDK version
        compile(project(':react-native-maps')){
            exclude group: 'com.google.android.gms', module: 'play-services-base'
            exclude group: 'com.google.android.gms', module: 'play-services-maps'
        }
        compile(project(":react-native-google-place-picker")){
            exclude group: "com.google.android.gms"
        }
        compile (project(':RNAdMob')){
            exclude group: "com.google.android.gms"
        }
        //compile project(':react-native-device-info')
        compile project(':react-native-fbsdk')
        compile (project(':react-native-mauron85-background-geolocation')){
            exclude group: "com.google.android.gms"
        }
        compile project(':react-native-android-location-enabler')
        compile project(':react-native-wheel-picker')
        compile project(':react-native-sound')

        compile project(':react-native-vector-icons')
        compile (project(':react-native-google-analytics-bridge')){
            exclude group: "com.google.android.gms"
        }
        //compile project(':react-native-device-info')
        compile(project(":react-native-device-info")){
            exclude group: "com.google.android.gms"
        }
        compile fileTree(dir: "libs", include: ["*.jar"])
        compile "com.android.support:appcompat-v7:23.0.1"
        //compile "com.facebook.react:react-native:+"  // From node_modules
        compile "com.facebook.react:react-native:0.44.3"

        compile(project(":react-native-google-signin")){
            exclude group: "com.google.android.gms"
        }
        compile (project(':tipsi-stripe')){
            exclude group: "com.google.firebase"
            exclude group: "com.android.support"
            exclude group: "com.google.android.gms"
        }
        compile 'com.google.android.gms:play-services-auth:11.0.2' // should be at least 9.0.0
        compile 'com.google.android.gms:play-services-places:11.0.2'
        compile 'com.google.android.gms:play-services-maps:11.0.2'
        //compile 'com.google.android.gms:play-services-location:11.0.2'

        compile 'com.google.android.gms:play-services-wallet:11.0.2'
        compile 'com.google.android.gms:play-services-gcm:11.0.2'

        compile 'com.google.android.gms:play-services-analytics:11.0.2'
        compile 'com.google.android.gms:play-services-ads:11.0.2'

    }

Ошибка при получении из проекта RNAdMob.но я исключил пакет gms.Я не делал никаких изменений в коде.Вчера это сработало и скомпилировано.Я удивляюсь, почему сегодня его не компилируют.Я нигде не добавил модуль "play-services-basement: 12.0.1".

Ответы [ 2 ]

0 голосов
/ 11 июня 2018

В android / app / build.gradle добавьте:

def _ext = rootProject.ext
def _googlePlayServicesVersion = _ext.has('googlePlayServicesVersion') ? _ext.googlePlayServicesVersion : '+'

В android / build.gradle добавьте:

ext { 
    // dependency versions
    googlePlayServicesVersion = "+"     
}

В общем, в следующем будущем я рекомендую обновить gradle и SDK в вашем проекте

На данный момент вы можете попробовать добавить maven в android / build.gradle :

buildscript { 
 repositories { 
    maven { url "https://maven.google.com" }
    jcenter()
    ...
 ...
 allprojects { 
   repositories { 
     mavenLocal() 
     maven { url "https://maven.google.com" } 
     jcenter()
     ...
 ...
0 голосов
/ 11 июня 2018

Переместите google() до jcenter() в вашем build.gradle, например

allprojects {
    repositories {
        mavenLocal()
        google()
        jcenter()
        maven { url "https://jitpack.io" }
        maven {
            url "https://maven.google.com" // Google's Maven repository
        }
    }
}
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...