trkpt/build.gradle

32 lines
792 B
Groovy
Raw Normal View History

2016-08-29 12:50:41 +00:00
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
2020-07-31 23:56:40 +00:00
ext {
kotlin_version = '1.3.72'
navigation_version = '2.3.0'
}
2016-08-29 12:50:41 +00:00
repositories {
google()
2020-01-02 17:00:37 +00:00
jcenter()
2016-08-29 12:50:41 +00:00
}
dependencies {
2020-07-28 14:28:30 +00:00
classpath 'com.android.tools.build:gradle:4.0.1'
2020-01-02 17:00:37 +00:00
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
2020-07-31 23:56:40 +00:00
classpath "androidx.navigation:navigation-safe-args-gradle-plugin:$navigation_version"
2016-08-29 12:50:41 +00:00
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
google()
2016-08-29 12:50:41 +00:00
jcenter()
}
2016-08-29 12:50:41 +00:00
}
task clean(type: Delete) {
delete rootProject.buildDir
}