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

45 lines
1.0 KiB
Groovy
Raw Normal View History

// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
2022-04-20 16:29:23 +02:00
ext.koin_version = '3.1.6'
2022-04-20 18:04:50 +02:00
ext.about_libraries_version = '10.1.0'
2022-09-26 20:21:57 +02:00
ext.nav_version = '2.5.2'
repositories {
2017-11-02 20:14:59 +01:00
google()
maven {
2021-06-20 09:59:45 +02:00
// about libraries gradle plugin
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
2022-10-23 14:58:24 +02:00
classpath 'com.android.tools.build:gradle:7.3.1'
2020-05-09 19:22:08 +02:00
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.7.20"
2020-05-09 19:22:08 +02:00
classpath "com.mikepenz.aboutlibraries.plugin:aboutlibraries-plugin:$about_libraries_version"
2021-06-20 09:19:17 +02:00
classpath "io.insert-koin:koin-gradle-plugin:$koin_version"
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
}
}
allprojects {
repositories {
2017-11-02 20:14:59 +01:00
google()
2021-06-20 09:59:45 +02:00
mavenCentral()
// TODO: remove once androidx.tonyodev.fetch2 has migrated
jcenter()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}