欢迎您访问 最编程 本站为您分享编程语言代码,编程技术文章!
您现在的位置是: 首页

如何在Android Studio中简单设置国内镜像源与HTTP代理(详尽教程)

最编程 2024-07-20 18:42:01
...
// Top-level build file where you can add configuration options common to all sub-projects/modules. buildscript { repositories { // google() // jcenter() maven { url "https://www.jitpack.io"} maven { url "https://maven.aliyun.com/repository/releases"} maven { url "https://maven.aliyun.com/repository/google"} maven { url "https://maven.aliyun.com/repository/central"} maven { url "https://maven.aliyun.com/repository/gradle-plugin"} maven { url "https://maven.aliyun.com/repository/public"} } dependencies { classpath 'com.android.tools.build:gradle:4.1.1' // NOTE: Do not place your application dependencies here; they belong // in the individual module build.gradle files } } allprojects { repositories { // google() // jcenter() maven { url "https://www.jitpack.io"} maven { url "https://maven.aliyun.com/repository/releases"} maven { url "https://maven.aliyun.com/repository/google"} maven { url "https://maven.aliyun.com/repository/central"} maven { url "https://maven.aliyun.com/repository/gradle-plugin"} maven { url "https://maven.aliyun.com/repository/public"} } } task clean(type: Delete) { delete rootProject.buildDir }