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 {
|
2019-04-18 11:18:19 +02:00
|
|
|
classpath 'com.android.tools.build:gradle:3.3.2'
|
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-12-27 04:29:02 +01:00
|
|
|
maven { url 'https://dl.bintray.com/sysdata/maven' }
|
|
|
|
maven { url 'http://repo.pageturner-reader.org' }
|
|
|
|
mavenCentral()
|
2018-07-26 17:04:44 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
task clean(type: Delete) {
|
|
|
|
delete rootProject.buildDir
|
|
|
|
}
|
2018-07-29 14:25:55 +02:00
|
|
|
|
|
|
|
ext {
|
2019-04-18 11:18:19 +02:00
|
|
|
roomVersion = '2.1.0-alpha06'
|
|
|
|
archLifecycleVersion = '2.1.0-alpha04'
|
2018-07-29 14:25:55 +02:00
|
|
|
}
|