chaosflix/build.gradle

47 lines
1.1 KiB
Groovy
Raw Normal View History

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