Can't find Android Support Repository in SDK Manager

后端 未结 7 2073
南笙
南笙 2020-12-11 00:18

I am following this: https://developer.android.com/sdk/installing/adding-packages.html At step 2, I can\'t seem to find an option to download Android Support Repository in t

7条回答
  •  我在风中等你
    2020-12-11 00:38

    As of today, the android support libraries are now available through Google's Maven repository. reference: https://developer.android.com/topic/libraries/support-library/setup.html

    by adding maven section in repositories tag in build.gradle of project.

    allprojects {
        repositories {
            jcenter()
            maven {
                url "https://maven.google.com"
            }
        }
    }
    

提交回复
热议问题