26 lines
650 B
Groovy
26 lines
650 B
Groovy
apply plugin: 'com.android.library'
|
|
apply plugin: 'org.jetbrains.kotlin.android'
|
|
|
|
dependencies {
|
|
implementation project(":app:ui:legacy")
|
|
implementation project(":app:core")
|
|
|
|
implementation "com.jakewharton.timber:timber:${versions.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']
|
|
}
|
|
}
|
|
}
|