forked from Dr-TSNG/Hide-My-Applist
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettings.gradle.kts
39 lines (35 loc) · 1.06 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
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
maven("https://jitpack.io")
maven("https://api.xposed.info/")
}
}
pluginManagement {
val agpVersion: String by settings
repositories {
gradlePluginPortal()
google()
mavenCentral()
}
plugins {
id("com.android.application") version agpVersion
id("com.android.library") version agpVersion
id("com.google.devtools.ksp") version "1.7.20-1.0.7"
id("androidx.navigation.safeargs") version "2.5.0"
id("dev.rikka.tools.autoresconfig") version "1.2.1"
id("dev.rikka.tools.materialthemebuilder") version "1.3.3"
id("dev.rikka.tools.refine") version "3.1.1"
id("org.jetbrains.kotlin.android") version "1.7.20"
kotlin("plugin.serialization") version "1.7.20"
}
}
rootProject.name = "HideMyApplist"
include(
":app",
":common",
":xposed"
)