-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathsettings.gradle.kts
More file actions
37 lines (34 loc) · 948 Bytes
/
settings.gradle.kts
File metadata and controls
37 lines (34 loc) · 948 Bytes
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
pluginManagement {
repositories {
google {
content {
includeGroupByRegex("com\\.android.*")
includeGroupByRegex("com\\.google.*")
includeGroupByRegex("androidx.*")
}
}
mavenCentral()
gradlePluginPortal()
}
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
}
}
rootProject.name = "COMP90018-Tutorials-2024"
include(":3-1-activitylifecycle")
include(":3-2-layoutdemo")
include(":3-3-watch")
include(":2-firstdemo")
include(":4-1-multithreads")
include(":4-2-services")
include(":5-1-sensor-barometer")
include(":5-2-sensor-gps")
include(":6-1-storage-sharedpreferences")
include(":6-2-storage-database")
include(":6-4-storage-contentprovider")
include(":6-5-storage-internalstorage")
include(":7-2-connectivity-firebase")