mirror of
https://github.com/aniyomiorg/aniyomi.git
synced 2024-11-22 21:02:16 +03:00
639d56364f
* chore(deps): update kotlin and compose compiler to v2 * Update .gitignore * Fix build --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: AntsyLich <59261191+AntsyLich@users.noreply.github.com>
16 lines
362 B
Text
16 lines
362 B
Text
buildscript {
|
|
dependencies {
|
|
classpath(libs.android.shortcut.gradle)
|
|
classpath(libs.aboutLibraries.gradle)
|
|
classpath(libs.sqldelight.gradle)
|
|
classpath(libs.moko.gradle)
|
|
}
|
|
}
|
|
|
|
plugins {
|
|
alias(kotlinx.plugins.serialization) apply false
|
|
}
|
|
|
|
tasks.register<Delete>("clean") {
|
|
delete(rootProject.layout.buildDirectory)
|
|
}
|