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
|
|
|
}
|
2022-10-17 15:52:11 +00:00
|
|
|
|
|
|
|
dependencies {
|
|
|
|
implementation project(":app:ui:legacy")
|
|
|
|
implementation project(":app:core")
|
|
|
|
|
2023-01-08 02:14:00 +00:00
|
|
|
implementation libs.timber
|
2022-10-17 15:52:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
android {
|
|
|
|
namespace 'app.k9mail.ui.widget.list'
|
|
|
|
|
2022-12-07 03:16:04 +00:00
|
|
|
buildFeatures {
|
|
|
|
buildConfig true
|
|
|
|
}
|
|
|
|
|
2022-10-17 15:52:11 +00:00
|
|
|
buildTypes {
|
|
|
|
debug {
|
|
|
|
manifestPlaceholders = ['appAuthRedirectScheme': 'FIXME: override this in your app project']
|
|
|
|
}
|
|
|
|
release {
|
|
|
|
manifestPlaceholders = ['appAuthRedirectScheme': 'FIXME: override this in your app project']
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|