twigs-android/build.gradle
William Brawner 48314efe66 Rename app module to android
This is in preparation for multiplatform setup
2020-07-25 16:29:46 -07:00

33 lines
759 B
Groovy

// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext.kotlin_version = '1.3.72'
ext.dagger = '2.23.1'
ext.moshi = '1.8.0'
ext.retrofit = '2.6.0'
ext.hyperion = '0.9.27'
ext.room_version = "2.2.5"
repositories {
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:4.0.1'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
}
}
allprojects {
repositories {
google()
jcenter()
maven { url "https://jitpack.io" }
maven {
url 'https://maven.google.com/'
}
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}