无法解析:com.facebook.android:facebook-android-sdk:4.0.0

无法解析:com.facebook.android:facebook-android-sdk:4.0.0

问题描述:

我使用的是Android 1.1.0工作室我跟着这个链接 https://开头开发商.facebook.com /文档/安卓/工具入门/ ,但得到的错误无法解析:com.facebook.android:facebook-android-sdk:4.0.0在教程mavenCentral()是present在构建脚本库,但在Android的工作室是jcenter()我试图改变库也跟着计算器Q&安培; A关于这个问题,但没有人帮助我,请给我建议的解决方案

I am using Android Studio 1.1.0 i followed this link https://developers.facebook.com/docs/android/getting-started/ but getting error Failed to resolve: com.facebook.android:facebook-android-sdk:4.0.0 in tutorial mavenCentral() is present in repositories of build script but in Android studio it is jcenter() i have tried changing repositories also followed * Q&A regarding this question but none of them helped me please suggest me solution

将以下code在全局的build.gradle

Put following code in your global build.gradle

 allprojects {
    repositories {
        jcenter()

    }
}