mirror of
https://github.com/willowtreeapps/vocable-android.git
synced 2025-08-06 14:59:35 +08:00

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
22 lines
520 B
Plaintext
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")
|