2018-07-26 23:04:44 +08:00
|
|
|
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
|
|
|
|
|
|
|
buildscript {
|
|
|
|
|
|
|
|
repositories {
|
|
|
|
google()
|
|
|
|
jcenter()
|
|
|
|
}
|
|
|
|
dependencies {
|
2019-12-13 18:08:47 +08:00
|
|
|
classpath 'com.android.tools.build:gradle:3.5.3'
|
2018-07-26 23:04:44 +08: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 23:18:01 +08:00
|
|
|
maven { url 'https://jitpack.io' }
|
2018-12-27 11:29:02 +08:00
|
|
|
maven { url 'https://dl.bintray.com/sysdata/maven' }
|
|
|
|
maven { url 'http://repo.pageturner-reader.org' }
|
|
|
|
mavenCentral()
|
2018-07-26 23:04:44 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
task clean(type: Delete) {
|
|
|
|
delete rootProject.buildDir
|
|
|
|
}
|
2018-07-29 20:25:55 +08:00
|
|
|
|
|
|
|
ext {
|
2020-04-04 16:10:25 +08:00
|
|
|
roomVersion = '2.2.5'
|
2020-02-12 18:11:03 +08:00
|
|
|
archLifecycleVersion = '2.2.0'
|
2018-07-29 20:25:55 +08:00
|
|
|
}
|