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
|
|
|
}
|
2020-05-21 21:17:49 +00:00
|
|
|
|
|
|
|
dependencies {
|
|
|
|
api project(":app:ui:base")
|
|
|
|
implementation project(":app:core")
|
|
|
|
implementation project(":app:autodiscovery:api")
|
|
|
|
implementation project(":mail:common")
|
|
|
|
|
2023-01-08 02:14:00 +00:00
|
|
|
implementation libs.androidx.lifecycle.viewmodel.ktx
|
|
|
|
implementation libs.androidx.lifecycle.livedata.ktx
|
|
|
|
implementation libs.androidx.constraintlayout
|
|
|
|
implementation libs.androidx.core.ktx
|
|
|
|
implementation libs.timber
|
|
|
|
implementation libs.kotlinx.coroutines.core
|
|
|
|
implementation libs.kotlinx.coroutines.android
|
2020-05-21 21:17:49 +00:00
|
|
|
|
|
|
|
testImplementation project(':mail:testing')
|
|
|
|
testImplementation project(':app:testing')
|
2023-01-08 02:14:00 +00:00
|
|
|
testImplementation libs.robolectric
|
2020-05-21 21:17:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
android {
|
2022-09-17 12:33:34 +00:00
|
|
|
namespace 'com.fsck.k9.ui.setup'
|
2020-05-21 21:17:49 +00:00
|
|
|
}
|