mirror of
git://f0xx.org/android_cast
synced 2026-07-29 05:37:52 +03:00
21 lines
416 B
Groovy
21 lines
416 B
Groovy
pluginManagement {
|
|
repositories {
|
|
google()
|
|
mavenCentral()
|
|
gradlePluginPortal()
|
|
}
|
|
}
|
|
plugins {
|
|
id 'org.gradle.toolchains.foojay-resolver-convention' version '0.10.0'
|
|
}
|
|
dependencyResolutionManagement {
|
|
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
|
|
repositories {
|
|
google()
|
|
mavenCentral()
|
|
}
|
|
}
|
|
|
|
rootProject.name = "AndroidCast"
|
|
include ':app'
|