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

45 lines
1.0 KiB
Groovy

// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext.koin_version = '3.1.6'
ext.about_libraries_version = '10.1.0'
ext.nav_version = '2.4.2'
repositories {
google()
maven {
// about libraries gradle plugin
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath 'com.android.tools.build:gradle:7.2.0'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.6.21"
classpath "com.mikepenz.aboutlibraries.plugin:aboutlibraries-plugin:$about_libraries_version"
classpath "io.insert-koin:koin-gradle-plugin:$koin_version"
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 {
google()
mavenCentral()
// TODO: remove once androidx.tonyodev.fetch2 has migrated
jcenter()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}