SoFunction
Updated on 2025-04-06

Solve the slow download of android studio reference remote repository (JCenter download slow)

This article introduces two methods to solve the slow download of android studio reference remote repository, as follows:

The first method

Use open source Chinese maven library

Alibaba Cloud's (fast speed):/nexus/content/groups/public/

Replace the project root directory

 repositories {
   jcenter()
 }

for:

 repositories {
  maven{url '/nexus/content/groups/public/'}
 }

The second method

Modify https to download the http protocol
http://jcenter//

Replace the project root directory

 repositories {
   jcenter()
 }

for:

 repositories {
  jcenter(){ url '/'}
 }

This is the end of this article about solving the slow download of android studio remote repository (JCenter remote repository). For more related content related to android studio remote repository, please search for my previous articles or continue browsing the related articles below. I hope everyone will support me in the future!