20 lines
363 B
Groovy
20 lines
363 B
Groovy
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
|
apply from: 'dependencies.gradle'
|
|
|
|
buildscript {
|
|
apply from: 'dependencies.gradle'
|
|
|
|
repositories {
|
|
jcenter()
|
|
}
|
|
dependencies {
|
|
classpath gradlePlugins.androidTools
|
|
}
|
|
}
|
|
|
|
allprojects {
|
|
repositories {
|
|
jcenter()
|
|
}
|
|
}
|