thunderbird-android/feature/settings/import/build.gradle.kts
Wolf-Martell Montwé e364804026
Add lint baseline
2024-01-25 15:21:23 +01:00

37 lines
1 KiB
Text

plugins {
id(ThunderbirdPlugins.Library.androidCompose)
alias(libs.plugins.kotlin.parcelize)
}
android {
// Using "importing" because "import" is not allowed in Java package names (it's fine with Kotlin, though)
namespace = "app.k9mail.feature.settings.importing"
resourcePrefix = "settings_import_"
buildTypes {
debug {
manifestPlaceholders["appAuthRedirectScheme"] = "FIXME: override this in your app project"
}
release {
manifestPlaceholders["appAuthRedirectScheme"] = "FIXME: override this in your app project"
}
}
lint {
baseline = file("lint-baseline.xml")
}
}
dependencies {
implementation(projects.app.core)
implementation(projects.app.ui.base)
implementation(projects.core.ui.compose.designsystem)
implementation(projects.feature.account.oauth)
implementation(libs.appauth)
implementation(libs.androidx.constraintlayout)
implementation(libs.fastadapter)
implementation(libs.timber)
}