Unable to resolve dependency Android Studio 3.0

前端 未结 10 522
一整个雨季
一整个雨季 2020-12-04 21:38

It\'s good to have a Updated Android Studio 3.0. But I am facing a problem with Android Studio 3.0, I just created a new project in

10条回答
  •  难免孤独
    2020-12-04 22:35

    all the Facebook Account Kit SDK build artifacts can be found on Maven Central:

    // https://mvnrepository.com/artifact/com.facebook.android/account-kit-sdk
    api 'com.facebook.android:account-kit-sdk:4.35.0'
    

    and the according repository to add is:

    repositories {
        mavenCentral()
    }
    

    Gradle not being in offline mode, is being assumed.

提交回复
热议问题