0
0
mirror of https://github.com/mediathekview/zapp.git synced 2024-09-19 20:02:17 +02:00
zapp/build.gradle

38 lines
843 B
Groovy
Raw Normal View History

// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
2024-08-11 14:42:38 +02:00
ext.about_libraries_version = '11.2.2'
ext.nav_version = '2.7.7'
repositories {
2017-11-02 20:14:59 +01:00
google()
}
dependencies {
2024-08-11 14:42:38 +02:00
classpath 'com.android.tools.build:gradle:8.5.2'
2020-05-09 19:22:08 +02:00
2023-03-12 15:50:10 +01:00
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.8.0"
2020-05-09 19:22:08 +02:00
2022-04-21 10:40:13 +02:00
classpath "androidx.navigation:navigation-safe-args-gradle-plugin:$nav_version"
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
2023-07-27 20:27:28 +02:00
plugins {
id 'com.google.devtools.ksp' version '1.9.0-1.0.12' apply false
id 'com.mikepenz.aboutlibraries.plugin' version "$about_libraries_version" apply false
2023-07-27 20:27:28 +02:00
}
allprojects {
repositories {
2017-11-02 20:14:59 +01:00
google()
2021-06-20 09:59:45 +02:00
mavenCentral()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}