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

39 lines
810 B
Groovy
Raw Normal View History

// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext.koin_version = '2.2.2'
ext.about_libraries_version = '8.6.5'
repositories {
2017-11-02 20:14:59 +01:00
google()
jcenter()
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
2020-12-26 21:01:15 +01:00
classpath 'com.android.tools.build:gradle:4.1.1'
2020-05-09 19:22:08 +02:00
2021-01-09 21:40:47 +01:00
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.4.21"
2020-05-09 19:22:08 +02:00
classpath "com.mikepenz.aboutlibraries.plugin:aboutlibraries-plugin:$about_libraries_version"
classpath "org.koin:koin-gradle-plugin:$koin_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()
jcenter()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}