fchat-rising/mobile/android/build.gradle

28 lines
572 B
Groovy
Raw Normal View History

2018-01-06 16:14:21 +00:00
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
2021-03-17 23:29:56 +00:00
ext.kotlin_version = '1.3.60'
2018-01-06 16:14:21 +00:00
repositories {
jcenter()
2018-07-20 01:12:26 +00:00
google()
2018-01-06 16:14:21 +00:00
}
dependencies {
2021-03-17 23:29:56 +00:00
classpath 'com.android.tools.build:gradle:3.5.0'
2018-01-06 16:14:21 +00:00
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 {
jcenter()
2018-07-20 01:12:26 +00:00
google()
2018-01-06 16:14:21 +00:00
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}