到底
This commit is contained in:
@@ -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)
|
||||
}
|
||||
Reference in New Issue
Block a user