forked from NeoApplications/Neo-Launcher
-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings.gradle.kts
31 lines (28 loc) · 942 Bytes
/
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
pluginManagement {
repositories {
mavenCentral()
google()
gradlePluginPortal()
}
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
mavenCentral()
google()
maven("../../../prebuilts/sdk/current/androidx/m2repository")
maven("../../../prebuilts/fullsdk-darwin/extras/android/m2repository")
maven("../../../prebuilts/fullsdk-linux/extras/android/m2repository")
maven(url = "https://jitpack.io")
}
}
include(":iconloaderlib")
project(":iconloaderlib").projectDir =
File(rootDir, "platform_frameworks_libs_systemui/iconloaderlib")
include(":searchuilib")
project(":searchuilib").projectDir = File(rootDir, "platform_frameworks_libs_systemui/searchuilib")
include(":SystemUIShared")
include(":CompatLib")
include(":CompatLibVR")
include(":CompatLibVS")
rootProject.name = "Smart Launcher"