我正在尝试在Android项目中添加facebook-android-sdk依赖项。首先,我将其添加到build.gradle:
implementation 'com.facebook.android:facebook-android-sdk:4.36.1'
所以app / build.gradle看起来像这样:
apply plugin: 'com.android.application'
android {
compileSdkVersion 28
defaultConfig {
applicationId "com.enricolobianco.test"
minSdkVersion 15
targetSdkVersion 28
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
repositories {
mavenCentral()
}
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'com.android.support:appcompat-v7:28.0.0'
implementation 'com.android.support.constraint:constraint-layout:1.1.3'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'com.android.support.test:runner:1.0.2'
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
implementation 'com.facebook.android:facebook-android-sdk:4.36.1'
}
在构建时,它给了我这个错误:
所有com.android.support库必须使用完全相同的版本 规范(混合版本可能导致运行时崩溃)。找到了 版本28.0.0、27.0.2。例子包括 com.android.support:animated-vector-drawable:28.0.0和 com.android.support:cardview-v7:27.0.2少...(Ctrl + F1)有 库或工具和库的某些组合是 不兼容,否则可能导致错误。一种这样的不兼容是 使用不支持的Android支持库版本进行编译 最新版本(或特别是低于您的版本 targetSdkVersion)。
为了解决这个问题,我对此进行了更改:
implementation 'com.facebook.android:facebook-android-sdk:4.36.1'
对此:
implementation ('com.facebook.android:facebook-android-sdk:4.36.1') {
exclude group: 'com.android.support', module: 'support-v4'
exclude group: 'com.android.support', module: 'appcompat-v7'
exclude group: 'com.android.support', module: 'cardview-v7'
exclude group: 'com.android.support', module: 'customtabs'
}
但是此错误突然出现:
我不知道如何解决这个问题。你有什么建议吗?
答案 0 :(得分:0)
实现'com.android.support:appcompat-v7:27.0.2'
仅使用Facebook使用的以上版本。不要更改fb sdk依赖性。