2020-05-18 23:25:03 +00:00
|
|
|
apply plugin: 'com.android.library'
|
|
|
|
apply plugin: 'org.jetbrains.kotlin.android'
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
implementation project(":app:core")
|
|
|
|
|
|
|
|
api "androidx.appcompat:appcompat:${versions.androidxAppCompat}"
|
2021-10-30 01:17:50 +00:00
|
|
|
api "androidx.activity:activity:${versions.androidxActivity}"
|
2021-08-18 00:34:13 +00:00
|
|
|
api "com.google.android.material:material:${versions.materialComponents}"
|
2022-03-03 19:55:07 +00:00
|
|
|
api "androidx.navigation:navigation-fragment:${versions.androidxNavigation}"
|
|
|
|
api "androidx.navigation:navigation-ui:${versions.androidxNavigation}"
|
2021-02-20 14:22:36 +00:00
|
|
|
api "androidx.lifecycle:lifecycle-livedata-ktx:${versions.androidxLifecycle}"
|
2020-05-18 23:25:03 +00:00
|
|
|
|
|
|
|
implementation "androidx.core:core-ktx:${versions.androidxCore}"
|
2021-08-18 00:34:13 +00:00
|
|
|
implementation "androidx.biometric:biometric:${versions.androidxBiometric}"
|
2020-05-18 23:25:03 +00:00
|
|
|
implementation "com.jakewharton.timber:timber:${versions.timber}"
|
2021-04-20 00:50:14 +00:00
|
|
|
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-core:${versions.kotlinCoroutines}"
|
2020-05-18 23:25:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
android {
|
2022-09-17 12:33:34 +00:00
|
|
|
namespace 'com.fsck.k9.ui.base'
|
2020-05-18 23:25:03 +00:00
|
|
|
}
|