-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsettings.gradle
More file actions
42 lines (41 loc) · 1.08 KB
/
settings.gradle
File metadata and controls
42 lines (41 loc) · 1.08 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
39
40
41
42
pluginManagement {
repositories {
google {
content {
includeGroupByRegex("com\\.android.*")
includeGroupByRegex("com\\.google.*")
includeGroupByRegex("androidx.*")
}
}
mavenCentral()
gradlePluginPortal()
}
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
maven {
allowInsecureProtocol true
url "https://maven.aliyun.com/repository/public"
}
google()
mavenCentral()
}
}
rootProject.name = "Sample-Android"
include ':module_p2p'
include ':module_exif'
include ':module_renderscript'
include ':module_2048'
include ':module_mlkit'
include ':module_tetris'
include ':module_block'
include ':module_snake'
include ':module_compose_size'
include ':module_compose_modifier'
include ':module_compose_theme'
include ':module_compose_drag'
include ':module_floating'
include ':module_notification'
include ':module_compose_like'
include ':module_mlkit_barcode_scanning'