fedilab-Android-App/build.gradle

28 lines
632 B
Groovy
Raw Normal View History

2017-05-05 16:36:04 +02:00
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
jcenter()
google()
2017-05-05 16:36:04 +02:00
}
dependencies {
2021-02-21 17:18:37 +01:00
classpath 'com.android.tools.build:gradle:4.1.2'
2021-03-01 18:19:08 +01:00
classpath 'com.google.gms:google-services:4.3.5'
2017-05-05 16:36:04 +02:00
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
jcenter()
google()
2021-02-21 17:18:37 +01:00
maven { url 'https://jitpack.io' }
2017-05-05 16:36:04 +02:00
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}