20 lines
362 B
Groovy
20 lines
362 B
Groovy
|
pluginManagement {
|
||
|
repositories {
|
||
|
google()
|
||
|
mavenCentral()
|
||
|
gradlePluginPortal()
|
||
|
}
|
||
|
}
|
||
|
dependencyResolutionManagement {
|
||
|
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
|
||
|
repositories {
|
||
|
google()
|
||
|
mavenCentral()
|
||
|
|
||
|
flatDir {
|
||
|
dirs 'libs'
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
include ':voiceinput-shared'
|