赞
踩
国内 Maven 镜像,你可以将它们添加到你的 Android Kotlin 项目的 build.gradle
文件中,以加快依赖库的下载速度:
中央仓库(Maven Central)镜像
- repositories {
- mavenCentral()
- maven { url 'https://maven.aliyun.com/repository/central' }
- }
JCenter 镜像:
- repositories {
- jcenter()
- maven { url 'https://maven.aliyun.com/repository/public' }
- }
Google Maven 仓库镜像:
- repositories {
- google()
- maven { url 'https://maven.aliyun.com/repository/google' }
- }
- buildscript {
- repositories {
- google()
- maven { url 'https://maven.aliyun.com/repository/google' }
- jcenter()
- maven { url 'https://maven.aliyun.com/repository/public' }
- }
- // ...
- }
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。