Repo created
This commit is contained in:
parent
75dc487a7a
commit
39c29d175b
6317 changed files with 388324 additions and 2 deletions
32
core/logging/impl-console/build.gradle.kts
Normal file
32
core/logging/impl-console/build.gradle.kts
Normal file
|
|
@ -0,0 +1,32 @@
|
|||
import org.jetbrains.kotlin.gradle.ExperimentalKotlinGradlePluginApi
|
||||
|
||||
plugins {
|
||||
id(ThunderbirdPlugins.Library.kmp)
|
||||
}
|
||||
|
||||
android {
|
||||
namespace = "net.thunderbird.core.logging.console"
|
||||
}
|
||||
|
||||
kotlin {
|
||||
@OptIn(ExperimentalKotlinGradlePluginApi::class)
|
||||
applyDefaultHierarchyTemplate {
|
||||
common {
|
||||
group("commonJvm") {
|
||||
withAndroidTarget()
|
||||
withJvm()
|
||||
}
|
||||
}
|
||||
}
|
||||
sourceSets {
|
||||
val commonJvmMain by getting
|
||||
|
||||
commonMain.dependencies {
|
||||
implementation(projects.core.logging.api)
|
||||
}
|
||||
|
||||
androidMain.dependencies {
|
||||
implementation(libs.timber)
|
||||
}
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue