Я получаю некоторые ошибки, когда я установил реактив-native-fbsdk и затем запускаю сборку ./gradlew.
Ошибка: все библиотеки com.android.support должны использовать точно такую же спецификацию версии(Смешивание версий может привести к сбоям во время выполнения).Найдено версии 27.1.1, 27.0.2.Примеры включают com.android.support:animated-vector-drawable:27.1.1 и com.android.support:cardview-v7:27.0.2 [GradleCompatible]
Мои зависимости от android / app /build.gradle
dependencies {
implementation project(':react-native-svg')
implementation project(':react-native-google-signin')
implementation project(':react-native-firebase')
implementation(project(':react-native-firebase')) {
transitive = false
}
implementation project(':react-native-svg')
implementation fileTree(dir: "libs", include: ["*.jar"])
implementation "com.android.support:appcompat-v7:23.0.1"
implementation "com.facebook.react:react-native:+" // From node_modules
implementation project(':react-native-google-signin')
implementation "com.google.android.gms:play-services-base:15.0.0"
implementation "com.google.firebase:firebase-core:15.0.2"
implementation "com.google.firebase:firebase-messaging:15.0.2"
implementation "com.google.firebase:firebase-auth:16.1.0"
implementation 'com.facebook.android:facebook-android-sdk:[4,5)'
implementation project(':react-native-fbsdk')
}
и мой скрипт сборки в android / build.gradle:
buildscript {
ext {
buildToolsVersion = "27.0.3"
minSdkVersion = 16
compileSdkVersion = 27
targetSdkVersion = 26
supportLibVersion = "27.1.1"
googlePlayServicesAuthVersion = "15.0.1"
}
repositories {
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.3.2'
classpath 'com.google.gms:google-services:3.2.1'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
Я нашел решение в этот ответ , но когдаЯ добавляю com.android.support:cardview-v7:27.1.1
к моим зависимостям. У меня та же проблема.
Что будет не так?