Files
EasyLauncher/settings.gradle.kts
2024-05-07 09:04:48 +01:00

21 lines
409 B
Kotlin

@file:Suppress("UnstableApiUsage")
pluginManagement {
repositories {
gradlePluginPortal()
google()
mavenCentral()
}
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
maven(url = "https://jitpack.io")
}
}
include(":app")
rootProject.name = "EasyLauncher"