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
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"
}
}
}