thunderbird-android/app/ui/message-list-widget/build.gradle
2023-01-16 14:49:14 +01:00

28 lines
621 B
Groovy

plugins {
alias(libs.plugins.android.library)
alias(libs.plugins.kotlin.android)
}
dependencies {
implementation project(":app:ui:legacy")
implementation project(":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']
}
}
}