thunderbird-android/app-feature-preview/build.gradle.kts

34 lines
664 B
Text
Raw Normal View History

2023-04-04 15:12:39 +00:00
plugins {
id(ThunderbirdPlugins.App.androidCompose)
}
android {
namespace = "app.k9mail.feature.preview"
defaultConfig {
applicationId = "net.thunderbird.feature.preview"
versionCode = 1
versionName = "1.0"
}
2023-06-12 16:06:46 +00:00
packaging {
resources {
excludes += listOf(
"META-INF/DEPENDENCIES",
)
}
}
lint {
baseline = file("lint-baseline.xml")
}
2023-04-04 15:12:39 +00:00
}
dependencies {
implementation(projects.core.ui.compose.designsystem)
implementation(projects.feature.onboarding)
2023-03-31 16:31:25 +00:00
implementation(projects.feature.account.setup)
implementation(libs.okhttp)
2023-04-04 15:12:39 +00:00
}