27 lines
582 B
Text
27 lines
582 B
Text
plugins {
|
|
id(ThunderbirdPlugins.Library.android)
|
|
}
|
|
|
|
dependencies {
|
|
implementation(projects.app.ui.legacy)
|
|
implementation(projects.app.core)
|
|
|
|
implementation(libs.timber)
|
|
}
|
|
|
|
android {
|
|
namespace = "app.k9mail.ui.widget.list"
|
|
|
|
buildFeatures {
|
|
buildConfig = true
|
|
}
|
|
|
|
buildTypes {
|
|
debug {
|
|
manifestPlaceholders["appAuthRedirectScheme"] = "FIXME: override this in your app project"
|
|
}
|
|
release {
|
|
manifestPlaceholders["appAuthRedirectScheme"] = "FIXME: override this in your app project"
|
|
}
|
|
}
|
|
}
|