28 lines
771 B
Plaintext
28 lines
771 B
Plaintext
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
|
|
|
plugins {
|
|
alias(libs.plugins.aboutLibraries) apply false
|
|
alias(libs.plugins.android.application) apply false
|
|
alias(libs.plugins.compose.compiler) apply false
|
|
alias(libs.plugins.kotlin.android) apply false
|
|
alias(libs.plugins.ksp) apply false
|
|
}
|
|
|
|
buildscript {
|
|
extra.apply {
|
|
// Cannot be called "ndkVersion" as that leads to naming collision
|
|
// Changes to this value must be reflected in `./docker/Dockerfile`
|
|
set("ndkVersionShared", "28.0.13004108")
|
|
}
|
|
|
|
repositories {
|
|
gradlePluginPortal()
|
|
google()
|
|
mavenCentral()
|
|
}
|
|
}
|
|
|
|
tasks.register<Delete>("clean") {
|
|
delete(layout.buildDirectory)
|
|
}
|