2015-11-12 03:55:24 +01:00
|
|
|
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
|
|
|
|
|
|
|
buildscript {
|
|
|
|
repositories {
|
2018-11-29 06:21:48 +01:00
|
|
|
google()
|
2015-11-12 03:55:24 +01:00
|
|
|
jcenter()
|
2019-01-25 03:08:36 +01:00
|
|
|
maven { url 'https://maven.fabric.io/public' } // rm-for-fdroid
|
2015-11-12 03:55:24 +01:00
|
|
|
}
|
|
|
|
dependencies {
|
2020-04-05 05:01:52 +02:00
|
|
|
classpath 'com.android.tools.build:gradle:3.6.2'
|
2019-01-25 03:08:36 +01:00
|
|
|
classpath 'io.fabric.tools:gradle:1.+' // rm-for-fdroid
|
2015-11-12 03:55:24 +01:00
|
|
|
|
2019-01-25 03:08:36 +01:00
|
|
|
classpath 'com.google.gms:google-services:4.2.0' // google-services plugin
|
2015-11-12 03:55:24 +01:00
|
|
|
// NOTE: Do not place your application dependencies here; they belong
|
|
|
|
// in the individual module build.gradle files
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
allprojects {
|
|
|
|
repositories {
|
2018-11-29 06:21:48 +01:00
|
|
|
google()
|
2015-11-12 03:55:24 +01:00
|
|
|
jcenter()
|
2019-02-27 06:32:32 +01:00
|
|
|
maven { url 'https://jitpack.io' }
|
2015-11-12 03:55:24 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
task clean(type: Delete) {
|
|
|
|
delete rootProject.buildDir
|
|
|
|
}
|