我在Android Studio的Android应用中创建了一个facebook登录选项。当我把
compile group: 'com.facebook.android', name: 'facebook-android-sdk', version: '4.26.0'
build.gradle中的依赖关系,错误如下: -
Error:Failed to resolve: com.facebook.android:facebook-android-sdk:4.26.0
原因是什么。
gradle文件是: -
apply plugin: 'com.android.application'
android {
compileSdkVersion 25
buildToolsVersion "25.0.1"
defaultConfig {
applicationId "com.example.android.health"
minSdkVersion 15
targetSdkVersion 25
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 {
// https://mvnrepository.com/artifact/com.facebook.android/facebook-android-sdk
compile group: 'com.facebook.android', name: 'facebook-android-sdk', version: '4.26.0'
compile fileTree(dir: 'libs', include: ['*.jar'])
androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
exclude group: 'com.android.support', module: 'support-annotations'
})
compile 'com.android.support:appcompat-v7:25.1.1'
compile 'com.android.support:design:25.1.1'
// testCompile 'junit:junit:4.12'
}
答案 0 :(得分:0)
在build.gradle中依赖于以下行;
compile 'com.facebook.android:facebook-android-sdk:4.18.0'
答案 1 :(得分:0)
而非此。
compile group: 'com.facebook.android', name: 'facebook-android-sdk', version: '4.26.0'
这样做。
compile 'com.facebook.android:facebook-android-sdk:4.26.0'
并确保在 classpath gradle 中包含此内容。
repositories {
jcenter {
url "http://jcenter.bintray.com/"
}
}
然后清理并重建您的项目。