Repo created
This commit is contained in:
parent
75dc487a7a
commit
39c29d175b
6317 changed files with 388324 additions and 2 deletions
57
feature/notification/api/build.gradle.kts
Normal file
57
feature/notification/api/build.gradle.kts
Normal file
|
|
@ -0,0 +1,57 @@
|
|||
plugins {
|
||||
id(ThunderbirdPlugins.Library.kmpCompose)
|
||||
alias(libs.plugins.dev.mokkery)
|
||||
}
|
||||
|
||||
kotlin {
|
||||
sourceSets {
|
||||
commonMain.dependencies {
|
||||
implementation(projects.core.common)
|
||||
implementation(projects.core.outcome)
|
||||
}
|
||||
commonTest.dependencies {
|
||||
implementation(projects.feature.notification.testing)
|
||||
}
|
||||
androidMain.dependencies {
|
||||
implementation(projects.core.ui.compose.designsystem)
|
||||
implementation(projects.core.ui.compose.theme2.common)
|
||||
}
|
||||
androidUnitTest.dependencies {
|
||||
implementation(projects.core.ui.compose.testing)
|
||||
implementation(libs.bundles.shared.jvm.test.compose)
|
||||
implementation(libs.bundles.shared.jvm.android.compose.debug)
|
||||
}
|
||||
jvmTest.dependencies {
|
||||
implementation(libs.kotlinx.coroutines.test)
|
||||
implementation(libs.bundles.shared.jvm.test)
|
||||
}
|
||||
}
|
||||
|
||||
sourceSets.all {
|
||||
compilerOptions {
|
||||
freeCompilerArgs.addAll(
|
||||
"-Xexpect-actual-classes",
|
||||
"-Xwhen-guards",
|
||||
)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
android {
|
||||
namespace = "net.thunderbird.feature.notification.api"
|
||||
testOptions {
|
||||
unitTests {
|
||||
isIncludeAndroidResources = true
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
java {
|
||||
sourceCompatibility = ThunderbirdProjectConfig.Compiler.javaVersion
|
||||
targetCompatibility = ThunderbirdProjectConfig.Compiler.javaVersion
|
||||
}
|
||||
|
||||
compose.resources {
|
||||
publicResClass = false
|
||||
packageOfResClass = "net.thunderbird.feature.notification.resources.api"
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue