This commit is contained in:
黎旭 2023-09-13 21:21:58 +08:00
parent 49f2148c3d
commit 0558b1f783
3 changed files with 33 additions and 2 deletions

View File

8
app/local.properties Normal file
View File

@ -0,0 +1,8 @@
## This file must *NOT* be checked into Version Control Systems,
# as it contains information specific to your local configuration.
#
# Location of the SDK. This is only used by Gradle.
# For customization when using a Version Control System, please read the
# header note.
#Tue Aug 15 08:03:18 CST 2023
sdk.dir=D\:\\Android\\sdk

View File

@ -1,8 +1,20 @@
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
jcenter()
gradlePluginPortal()
// MavenCentral https://mvnrepository.com
mavenCentral()
google()
// noinspection JcenterRepositoryObsolete
jcenter()
// https://maven.aliyun.com/mvn/guide
maven { url 'https://maven.aliyun.com/repository/public' }
maven { url 'https://maven.aliyun.com/repository/google' }
// https://mirrors.huaweicloud.com
maven { url 'https://repo.huaweicloud.com/repository/maven' }
// JitPack https://jitpack.io
maven { url 'https://jitpack.io' }
}
dependencies {
classpath 'com.android.tools.build:gradle:3.4.1'
@ -11,7 +23,18 @@ buildscript {
allprojects {
repositories {
jcenter()
// MavenCentral https://mvnrepository.com
mavenCentral()
google()
// noinspection JcenterRepositoryObsolete
jcenter()
// https://maven.aliyun.com/mvn/guide
maven { url 'https://maven.aliyun.com/repository/public' }
maven { url 'https://maven.aliyun.com/repository/google' }
// https://mirrors.huaweicloud.com
maven { url 'https://repo.huaweicloud.com/repository/maven' }
// JitPack https://jitpack.io
maven { url 'https://jitpack.io' }
}
}