SubwayTooter-Android-App/build.gradle

29 lines
651 B
Groovy
Raw Normal View History

2017-04-20 18:23:59 +02:00
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
jcenter()
2017-04-23 07:42:09 +02:00
mavenCentral()
2017-04-20 18:23:59 +02:00
}
dependencies {
2017-05-17 19:21:40 +02:00
classpath 'com.android.tools.build:gradle:2.3.2'
2017-04-20 18:23:59 +02:00
classpath 'com.google.gms:google-services:3.0.0'
2017-04-20 18:23:59 +02:00
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
jcenter()
maven { url "https://jitpack.io" }
2017-04-20 18:23:59 +02:00
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}