mihon/build.gradle.kts

24 lines
649 B
Plaintext
Raw Normal View History

buildscript {
// https://issuetracker.google.com/344363457
// TODO: Remove when AGP's bundled R8 is updated
repositories {
maven("https://storage.googleapis.com/r8-releases/raw")
}
dependencies {
classpath("com.android.tools:r8:8.5.21")
classpath(libs.android.shortcut.gradle)
2024-01-15 15:55:26 +01:00
classpath(libs.google.services.gradle)
classpath(libs.aboutLibraries.gradle)
classpath(libs.sqldelight.gradle)
classpath(libs.moko.gradle)
}
}
2015-09-24 17:27:43 +02:00
plugins {
2023-01-19 04:33:56 +01:00
alias(kotlinx.plugins.serialization) apply false
2020-04-25 20:30:14 +02:00
}
tasks.register<Delete>("clean") {
delete(rootProject.layout.buildDirectory)
}