chinwag-android/build.gradle

27 lines
638 B
Groovy
Raw Permalink Normal View History

2017-01-03 12:37:38 +11:00
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext.kotlin_version = '1.3.50'
2017-01-03 12:37:38 +11:00
repositories {
jcenter()
google()
2017-01-03 12:37:38 +11:00
}
dependencies {
classpath 'com.android.tools.build.jetifier:jetifier-processor:1.0.0-beta06'
classpath 'com.android.tools.build:gradle:3.5.0'
2017-11-06 08:32:36 +11:00
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
2017-01-03 12:37:38 +11:00
}
}
allprojects {
repositories {
jcenter()
maven { url "https://jitpack.io" }
google()
2017-01-03 12:37:38 +11:00
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}