This commit is contained in:
coco
2026-07-16 09:43:06 +08:00
parent 95aa018b8b
commit 63bb06ff63
95 changed files with 6004 additions and 0 deletions
+30
View File
@@ -0,0 +1,30 @@
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)
}