migrate build files to kotlin

This commit is contained in:
Luke Wass 2025-05-12 12:32:14 -05:00
parent 87f3d49305
commit 642b6bcbf4
9 changed files with 268 additions and 155 deletions

24
settings.gradle.kts Normal file
View file

@ -0,0 +1,24 @@
pluginManagement {
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 = "Launcher"
include(":app")