19 lines
367 B
Text
19 lines
367 B
Text
|
|
plugins {
|
||
|
|
id(ThunderbirdPlugins.Library.kmp)
|
||
|
|
alias(libs.plugins.kotlin.serialization)
|
||
|
|
}
|
||
|
|
|
||
|
|
android {
|
||
|
|
namespace = "net.thunderbird.feature.search.legacy"
|
||
|
|
}
|
||
|
|
|
||
|
|
kotlin {
|
||
|
|
sourceSets {
|
||
|
|
commonMain.dependencies {
|
||
|
|
implementation(projects.feature.mail.account.api)
|
||
|
|
|
||
|
|
implementation(libs.kotlinx.serialization.json)
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|