mirror of
https://github.com/kiwix/kiwix-android.git
synced 2025-08-03 02:36:24 -04:00
31 lines
616 B
Plaintext
31 lines
616 B
Plaintext
buildscript {
|
|
repositories {
|
|
google()
|
|
mavenCentral()
|
|
maven { setUrl("https://jitpack.io") }
|
|
}
|
|
dependencies {
|
|
classpath(Libs.com_android_tools_build_gradle)
|
|
classpath(Libs.kotlin_gradle_plugin)
|
|
classpath(Libs.navigation_safe_args_gradle_plugin)
|
|
|
|
// NOTE: Do not place your application dependencies here; they belong
|
|
// in the individual module build.gradle files
|
|
}
|
|
}
|
|
plugins {
|
|
buildSrcVersions
|
|
}
|
|
|
|
allprojects {
|
|
repositories {
|
|
google()
|
|
mavenCentral()
|
|
maven { setUrl("https://jitpack.io") }
|
|
}
|
|
}
|
|
|
|
tasks.create<Delete>("clean") {
|
|
delete(rootProject.buildDir)
|
|
}
|