1
0
mirror of https://github.com/tuskyapp/Tusky synced 2025-01-28 14:49:23 +01:00
Tusky-App-Android/build.gradle

26 lines
553 B
Groovy
Raw Normal View History

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