21 lines
355 B
Kotlin
21 lines
355 B
Kotlin
pluginManagement {
|
|||
|
|
repositories {
|
||
|
|
google()
|
||
|
|
mavenCentral()
|
||
|
|
gradlePluginPortal()
|
||
|
|
}
|
||
|
|
}
|
||
|
|
plugins {
|
||
|
|
id("org.gradle.toolchains.foojay-resolver-convention") version "0.10.0"
|
||
|
|
}
|
||
|
|
|
||
|
|
dependencyResolutionManagement {
|
||
|
|
repositories {
|
||
|
|
google()
|
||
|
|
mavenCentral()
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
rootProject.name = "ts-mobile-go"
|
||
|
|
include(":app")
|