I am trying to setup Android Studio + Android SDK on Linux. I was able to setup Android Studio and SDK Tools and other components except \"Android Support Repository\" (The down
Extract the downloaded zip file.
Copy the folder named m2repository
from the extracted folder.
Navigate to extras/android
directory in your SDK installation directory. For me it's:
C:\Users\$usrname$\AppData\Local\Android\sdk\extras\android\
Replace the existing m2repository
folder with the one from the ZIP.
(I suggest creating a backup first)
Restart Android studio.
Hopefully you will have the newer Android support repository.
Update
To get the latest version of support repository:
a. Go to this link
b. Search for the keyword m2repository_r
c. Copy the value in
tag.
It should look like this:
355529608
a0d22beacc106a6977321f2b07d692ce4979e96a
android_m2repository_rXX.zip
d. Paste it to the end of this URL: https://dl.google.com/android/repository/
Your new URL should look like this:
https://dl.google.com/android/repository/android_m2repository_rXX.zip
where XX
is the version number
e. Download and continue from step 2