Cannot install Support repository and sync project in Android Studio

后端 未结 4 1384
一个人的身影
一个人的身影 2020-12-02 16:56

I am trying to use the support libraries of version 25.2.0 so I will be able to use the CameraKit library.

I have got the newest build tools downloaded:

4条回答
  •  -上瘾入骨i
    2020-12-02 17:52

    Previously the Android Support Library dependencies were downloaded from Android SDK Manager.

    Now all the new versions are available from Google's Maven repository. In future all android libraries will be distributed through maven.google.com

    So, by adding the below code to the repositories will build the project.

    repositories {
        maven {
            url "https://maven.google.com"
        }
    }
    

提交回复
热议问题