2017-03-17 22:19:04 +00:00
|
|
|
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
|
|
|
|
|
|
|
buildscript {
|
2019-04-24 21:10:00 +00:00
|
|
|
ext.kotlin_version = '1.3.21'
|
2017-03-17 22:19:04 +00:00
|
|
|
repositories {
|
2018-12-10 22:03:53 +00:00
|
|
|
mavenLocal()
|
2017-11-02 23:00:46 +00:00
|
|
|
google()
|
2018-12-10 22:03:53 +00:00
|
|
|
jcenter()
|
2019-05-01 11:45:06 +00:00
|
|
|
maven { url "https://plugins.gradle.org/m2/" }
|
2017-03-17 22:19:04 +00:00
|
|
|
}
|
|
|
|
dependencies {
|
2019-04-24 21:10:00 +00:00
|
|
|
classpath 'com.android.tools.build:gradle:3.4.0'
|
2017-10-04 21:03:23 +00:00
|
|
|
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
|
2019-05-01 11:45:06 +00:00
|
|
|
classpath "org.jlleitschuh.gradle:ktlint-gradle:7.4.0"
|
2017-03-17 22:19:04 +00:00
|
|
|
|
|
|
|
// NOTE: Do not place your application dependencies here; they belong
|
|
|
|
// in the individual module build.gradle files
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
allprojects {
|
|
|
|
repositories {
|
2017-10-31 19:49:43 +00:00
|
|
|
mavenLocal()
|
2018-09-08 16:54:21 +00:00
|
|
|
google()
|
2017-03-17 22:19:04 +00:00
|
|
|
jcenter()
|
|
|
|
maven { url "https://oss.sonatype.org/content/repositories/snapshots/" }
|
2018-01-08 19:16:22 +00:00
|
|
|
maven { url 'https://jitpack.io' }
|
2017-03-17 22:19:04 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-12-23 20:26:18 +00:00
|
|
|
|
2017-10-04 20:23:56 +00:00
|
|
|
ext{
|
2018-12-27 11:00:21 +00:00
|
|
|
touchVersionCode = 37
|
2019-04-24 21:10:00 +00:00
|
|
|
touchVersionName = "0.5.0"
|
|
|
|
leanbackVersionCode = 20
|
|
|
|
leanbackVersionName = "0.5.0"
|
2018-12-23 20:26:18 +00:00
|
|
|
|
2018-09-08 16:54:21 +00:00
|
|
|
minSDK = 22
|
|
|
|
targetSDK = 28
|
|
|
|
compileSdkVersion = 28
|
2018-12-09 22:07:39 +00:00
|
|
|
buildToolsVersion = "28.0.3"
|
2018-12-10 22:15:05 +00:00
|
|
|
supportLibraryVersion = "28.0.0"
|
2018-12-10 00:27:02 +00:00
|
|
|
constraintLayoutVersion = "1.1.3"
|
2018-09-07 06:35:11 +00:00
|
|
|
archCompVersion = "1.1.1"
|
2017-10-04 20:23:56 +00:00
|
|
|
}
|
|
|
|
|
2017-03-17 22:19:04 +00:00
|
|
|
task clean(type: Delete) {
|
|
|
|
delete rootProject.buildDir
|
2019-05-01 11:45:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
apply plugin: "org.jlleitschuh.gradle.ktlint"
|
|
|
|
|
|
|
|
subprojects {
|
|
|
|
apply plugin: "org.jlleitschuh.gradle.ktlint"
|
|
|
|
}
|
|
|
|
|