0
0
mirror of https://github.com/mueller-ma/PrepaidBalance.git synced 2024-09-20 08:22:12 +02:00
PrepaidBalance/build.gradle

30 lines
764 B
Groovy
Raw Normal View History

2021-05-16 18:26:18 +02:00
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext.kotlin_version = "1.5.0"
2021-05-16 18:26:18 +02:00
ext.room_version = "2.3.0"
ext.workmanager_version = "2.5.0"
repositories {
google()
mavenCentral()
maven { url 'https://jitpack.io' }
}
dependencies {
classpath 'com.android.tools.build:gradle:4.2.0'
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 {
google()
mavenCentral()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}