SimpleCloudNotifier/android/build.gradle

29 lines
697 B
Groovy
Raw Normal View History

2018-09-21 22:21:24 +02:00
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
google()
jcenter()
}
dependencies {
2018-10-20 14:57:05 +02:00
classpath 'com.android.tools.build:gradle:3.2.1'
2018-09-21 23:15:37 +02:00
classpath 'com.google.gms:google-services:4.0.1'
2018-09-21 22:21:24 +02:00
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
google()
jcenter()
2018-09-23 20:00:10 +02:00
maven { url "https://jitpack.io" }
2018-09-27 02:30:12 +02:00
maven { url "https://dl.bintray.com/gericop/maven" }
2018-09-21 22:21:24 +02:00
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}