SimpleCloudNotifier/android/build.gradle

30 lines
615 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-11-12 00:15:50 +01:00
classpath 'com.google.gms:google-services:4.2.0'
2018-09-21 22:21:24 +02:00
}
}
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-10-22 15:16:39 +02:00
maven { url "https://maven.google.com" }
2018-09-21 22:21:24 +02:00
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}