forked from ibaozi-cn/Multi-Process-Audio-Recorder
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.gradle
More file actions
38 lines (36 loc) · 1.55 KB
/
settings.gradle
File metadata and controls
38 lines (36 loc) · 1.55 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
pluginManagement {
repositories {
maven { url=uri ("https://jitpack.io") }
maven { url=uri ("https://maven.aliyun.com/repository/releases") }
maven { url=uri ("https://maven.aliyun.com/repository/google") }
maven { url=uri ("https://maven.aliyun.com/repository/central") }
maven { url=uri ("https://maven.aliyun.com/repository/gradle-plugin") }
maven { url=uri ("https://maven.aliyun.com/repository/public") }
google()
mavenCentral()
gradlePluginPortal()
}
}
rootProject.name='RecorderProject'
include ':app'
include ':app:audio'
include ':apptestdemo'
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
// 阿里云Maven中央仓库下载源
// https://developer.aliyun.com/mvn/guide?spm=a2c6h.13651104.0.0.435836a4Lghjtb
maven { url "https://maven.aliyun.com/repository/google" }
// maven { url 'https://maven.aliyun.com/repository/public' } // 不许用,不然满江红
// 不在GitHub Actions中使用的仓库配置
if (!System.getenv().containsKey('CI')) {
maven { url 'https://mirrors.tencent.com/nexus/repository/maven-public/' }
}
maven { url 'https://developer.huawei.com/repo/'}
google()
mavenCentral()
maven { url 'https://jitpack.io' }
maven { url "https://tencent-tds-maven.pkg.coding.net/repository/shiply/repo" }
maven { url "https://tencent-tds-maven.pkg.coding.net/repository/shiply/repo-snapshot/" }
}
}