Files
vocable-android/settings.gradle.kts
Paul Klauser 5780254ef9 Abstract common build logic out to convention plugin
Convert some gradle files to kotlin
This is going to set us up for a shared basetest module which will enable us to stop duplicating test fixtures across test and androidtest
2024-06-04 09:16:39 -04:00

22 lines
520 B
Plaintext

// Needed because of https://issuetracker.google.com/issues/315023802
gradle.startParameter.excludedTaskNames.addAll(listOf(":build-logic:testClasses"))
pluginManagement {
includeBuild("build-logic")
repositories {
google()
mavenCentral()
gradlePluginPortal()
}
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
}
}
rootProject.name = "vocable-android"
include(":app")