thunderbird-android/app/ui/message-list-widget/build.gradle.kts

28 lines
579 B
Text
Raw Normal View History

2023-01-08 02:14:00 +00:00
plugins {
2023-02-16 09:30:06 +00:00
id "thunderbird.library.android"
2023-01-08 02:14:00 +00:00
}
dependencies {
implementation project(":app:ui:legacy")
implementation project(":app:core")
2023-01-08 02:14:00 +00:00
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']
}
}
}