-
Notifications
You must be signed in to change notification settings - Fork 373
/
settings.gradle.kts
51 lines (45 loc) · 1.26 KB
/
settings.gradle.kts
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
43
44
45
46
47
48
49
50
51
@file:Suppress("UnstableApiUsage")
pluginManagement {
includeBuild("build-logic")
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 = "Smart Auto Clicker"
include(":core:common:android")
include(":core:common:base")
include(":core:common:bitmaps")
include(":core:common:display")
include(":core:common:overlays")
include(":core:common:permissions")
include(":core:common:quality")
include(":core:common:ui")
include(":core:dumb")
include(":core:smart:database")
include(":core:smart:detection")
include(":core:smart:domain")
include(":core:smart:processing")
include(":feature:backup")
include(":feature:notifications")
include(":feature:quick-settings-tile")
include(":feature:revenue")
include(":feature:dumb-config")
include(":feature:smart-config")
include(":feature:smart-debugging")
include(":feature:tutorial")
include(":smartautoclicker")