2018-07-26 17:04:44 +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-26 18:06:35 +02:00
|
|
|
classpath 'com.android.tools.build:gradle:3.2.1'
|
2018-07-26 17:04:44 +02:00
|
|
|
|
|
|
|
|
|
|
|
// NOTE: Do not place your application dependencies here; they belong
|
|
|
|
// in the individual module build.gradle files
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
allprojects {
|
|
|
|
repositories {
|
|
|
|
google()
|
|
|
|
jcenter()
|
2018-10-28 16:18:01 +01:00
|
|
|
maven { url 'https://jitpack.io' }
|
2018-07-26 17:04:44 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
task clean(type: Delete) {
|
|
|
|
delete rootProject.buildDir
|
|
|
|
}
|
2018-07-29 14:25:55 +02:00
|
|
|
|
|
|
|
ext {
|
|
|
|
roomVersion = '1.1.1'
|
|
|
|
archLifecycleVersion = '1.1.1'
|
|
|
|
}
|