-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsettings.gradle
More file actions
36 lines (31 loc) · 1.02 KB
/
Copy pathsettings.gradle
File metadata and controls
36 lines (31 loc) · 1.02 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
pluginManagement {
repositories {
maven { url 'https://maven.aliyun.com/repository/public' }
mavenCentral()
gradlePluginPortal()
maven { url 'https://jitpack.io' }
google()
}
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
maven { url "https://maven.aliyun.com/repository/public" }
mavenCentral()
maven { url 'https://jitpack.io' }
google()
}
}
rootProject.name = "FreezeApp"
include ':app'
include ':hidden-api-stub'
project(':hidden-api-stub').projectDir = new File(rootDir, 'hidden-api/hidden-api-stub')
include ':hidden-api-processor'
project(':hidden-api-processor').projectDir = new File(rootDir, 'hidden-api/hidden-api-processor')
include ':hidden-api-annotation'
project(':hidden-api-annotation').projectDir = new File(rootDir, 'hidden-api/hidden-api-annotation')
includeBuild 'hidden-api/hidden-api-plugin'
include ':daemon'
include ':common'
include ':adb'
include ':reflect'