Files
AndroidJetpack/ComposeCalendar/library/build.gradle.kts
T
2026-07-16 09:43:06 +08:00

31 lines
770 B
Kotlin

import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
plugins {
id(Android.LibraryPluginId)
kotlin(Kotlin.AndroidPluginId)
id("common-android-plugin")
id(MavenPublish.PluginId)
}
android {
namespace = "io.github.boguszpawlowski.composecalendar"
tasks.withType<KotlinCompile> {
kotlinOptions {
freeCompilerArgs = freeCompilerArgs + "-Xexplicit-api=strict" + "-Xcontext-receivers"
}
}
}
dependencies {
implementation(Compose.Ui)
implementation(Compose.UiTooling)
implementation(Compose.AccompanistPager)
implementation(Compose.Foundation)
implementation(Compose.FoundationLayout)
implementation(Compose.Material)
implementation(Timber.Core)
testImplementation(Kotest.Assertions)
testImplementation(Kotest.RunnerJunit5)
}