difuse-phone-android/build.gradle

32 lines
759 B
Groovy
Raw Normal View History

2018-11-15 12:06:12 +00:00
// Top-level build file where you can add configuration options common to all sub-projects/modules.
2014-10-30 15:42:15 +00:00
buildscript {
2018-02-02 15:04:30 +00:00
repositories {
2018-11-15 12:06:12 +00:00
google()
2018-02-02 15:04:30 +00:00
jcenter()
mavenCentral()
2018-11-26 10:18:15 +00:00
maven {
url "https://plugins.gradle.org/m2/"
}
2018-02-02 15:04:30 +00:00
}
dependencies {
classpath 'com.android.tools.build:gradle:3.5.1'
2019-09-18 08:29:07 +00:00
classpath 'com.google.gms:google-services:4.3.2'
classpath "com.diffplug.spotless:spotless-plugin-gradle:3.24.2"
2018-11-15 12:06:12 +00:00
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
2014-10-30 15:42:15 +00:00
}
2017-04-27 13:14:17 +00:00
allprojects {
2018-02-02 15:04:30 +00:00
repositories {
google()
2018-11-15 12:06:12 +00:00
jcenter()
2018-02-02 15:04:30 +00:00
}
2017-04-27 13:14:17 +00:00
}
2018-11-15 12:06:12 +00:00
task clean(type: Delete) {
delete rootProject.buildDir
}