
(cherry picked from commit c31e75f02f3021c52f6c24f655e2bded0c8b2b33) # Conflicts: # .github/workflows/build_pull_request.yml # .github/workflows/build_push.yml # app/build.gradle.kts # build.gradle.kts
19 lines
450 B
Plaintext
19 lines
450 B
Plaintext
buildscript {
|
|
dependencies {
|
|
classpath(libs.android.shortcut.gradle)
|
|
classpath(libs.google.services.gradle)
|
|
classpath(libs.aboutLibraries.gradle)
|
|
classpath(libs.sqldelight.gradle)
|
|
classpath(sylibs.firebase.crashlytics.gradle)
|
|
classpath(sylibs.versionsx)
|
|
}
|
|
}
|
|
|
|
plugins {
|
|
alias(kotlinx.plugins.serialization) apply false
|
|
}
|
|
|
|
tasks.register<Delete>("clean") {
|
|
delete(rootProject.buildDir)
|
|
}
|