Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Can't find Android Support Repository in SDK Manager

People also ask

How do I add support to Android?

Downloading the Support LibrariesStart the android SDK Manager. In the SDK Manager window, scroll to the end of the Packages list, find the Extras folder. Select the Android Support Library item. Click the Install packages button.

How do I install missing components in SDK manager?

Quick fix: Go to the Tools –> SDK manager –> SDK tools. Deselect Hide obsolete packages option on the right bottom and further install Android SDK Tools(obsolete). A new folder named Tools is now generated in the SDK directory.


Under Tools, select Android SDK Tools and Android SDK Platform-tools and update.

enter image description here

Once updated, restart your SDK Manager. Android Support Repository will now be available under Extras.

enter image description here


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

kehers answer worked before but now that library has been renamed to:

Local Maven repository for Support Libraries and its also under Extras.


I also faced the same problem. You should update your Android SDK Tools and Android SDK Platform-tools. That will bring the option of Support Repository.