2017-09-27 15:52:52 +02:00
|
|
|
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
|
|
|
|
|
|
|
|
|
buildscript {
|
|
|
|
|
repositories {
|
|
|
|
|
jcenter()
|
2017-11-06 13:13:53 +01:00
|
|
|
google()
|
2017-09-27 15:52:52 +02:00
|
|
|
}
|
|
|
|
|
dependencies {
|
2020-09-15 13:42:46 +02:00
|
|
|
classpath 'com.android.tools.build:gradle:4.0.1'
|
2018-06-13 13:31:59 +02:00
|
|
|
classpath 'io.realm:realm-gradle-plugin:5.3.0'
|
2017-09-27 15:52:52 +02:00
|
|
|
|
|
|
|
|
// NOTE: Do not place your application dependencies here; they belong
|
|
|
|
|
// in the individual module build.gradle files
|
2018-06-06 17:32:20 +02:00
|
|
|
classpath 'com.google.gms:google-services:4.0.1'
|
2017-09-27 15:52:52 +02:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
allprojects {
|
|
|
|
|
repositories {
|
|
|
|
|
jcenter()
|
2017-10-27 00:11:25 +02:00
|
|
|
google()
|
2017-09-27 15:52:52 +02:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
task clean(type: Delete) {
|
|
|
|
|
delete rootProject.buildDir
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ext {
|
|
|
|
|
versionCode = 1
|
|
|
|
|
versionName = "0.1"
|
|
|
|
|
}
|