0
0
mirror of https://github.com/mueller-ma/PrepaidBalance.git synced 2024-09-19 16:02:14 +02:00
PrepaidBalance/build.gradle

38 lines
1.1 KiB
Groovy
Raw Permalink 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.9.23"
ext.room_version = "2.6.1"
ext.workmanager_version = "2.9.0"
ext.about_libraries_version="11.1.3"
2021-05-16 18:26:18 +02:00
repositories {
google()
mavenCentral()
2021-10-14 09:00:50 +02:00
maven { url "https://jitpack.io" }
2022-07-25 22:00:10 +02:00
maven { url "https://plugins.gradle.org/m2/" }
2021-05-16 18:26:18 +02:00
}
dependencies {
classpath 'com.android.tools.build:gradle:8.3.2'
2021-05-16 18:26:18 +02:00
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
2022-07-25 22:00:10 +02:00
classpath "com.mikepenz.aboutlibraries.plugin:aboutlibraries-plugin:$about_libraries_version"
2021-05-16 18:26:18 +02:00
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
plugins {
// modern kotlin annotation support; replaces kapt: https://developer.android.com/build/migrate-to-ksp
id 'com.google.devtools.ksp' version '1.9.23-1.0.20' apply false
}
2021-05-16 18:26:18 +02:00
allprojects {
repositories {
google()
mavenCentral()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}