lun_launcher/settings.gradle.kts

23 lines
459 B
Plaintext
Raw Normal View History

2024-08-12 17:02:52 +09:00
pluginManagement {
repositories {
gradlePluginPortal()
google()
mavenCentral()
2025-03-27 11:50:45 +09:00
jcenter()
2024-08-12 17:02:52 +09:00
}
}
@Suppress("UnstableApiUsage")
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
2025-03-27 11:50:45 +09:00
jcenter()
2024-08-12 17:02:52 +09:00
google()
mavenCentral()
maven(url = "https://jitpack.io")
}
}
rootProject.name = "LunarLauncher"
2024-11-11 18:12:06 +09:00
include ("app","library","utils")