mirror of https://github.com/tasks/tasks
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
736 B
Kotlin
25 lines
736 B
Kotlin
plugins {
|
|
alias(libs.plugins.android.application) apply false
|
|
alias(libs.plugins.android.library) apply false
|
|
alias(libs.plugins.kotlin.multiplatform) apply false
|
|
alias(libs.plugins.kotlin.parcelize) apply false
|
|
alias(libs.plugins.kotlin.serialization) apply false
|
|
alias(libs.plugins.ksp) apply false
|
|
}
|
|
|
|
buildscript {
|
|
dependencies {
|
|
classpath(libs.gradle)
|
|
classpath(libs.google.services)
|
|
classpath(libs.firebase.crashlytics.gradle)
|
|
classpath(libs.kotlin.gradle)
|
|
classpath(libs.dagger.hilt.gradle)
|
|
classpath(libs.oss.licenses.plugin)
|
|
}
|
|
}
|
|
|
|
tasks.getByName<Wrapper>("wrapper") {
|
|
gradleVersion = "8.8"
|
|
distributionType = Wrapper.DistributionType.ALL
|
|
}
|