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 {
2020-11-03 14:41:20 +01:00
classpath 'com.android.tools.build:gradle:4.1.0'
classpath 'com.google.gms:google-services:4.3.4'
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
}