0
0
mirror of https://github.com/thunderbird/thunderbird-android.git synced 2024-09-20 12:12:15 +02:00
thunderbird-android/app/storage/build.gradle.kts

24 lines
539 B
Plaintext
Raw Normal View History

2023-01-08 03:14:00 +01:00
plugins {
id(ThunderbirdPlugins.Library.android)
2023-01-08 03:14:00 +01:00
}
dependencies {
api(libs.koin.core)
implementation(projects.app.core)
implementation(libs.androidx.core.ktx)
implementation(libs.timber)
implementation(libs.mime4j.core)
implementation(libs.commons.io)
implementation(libs.moshi)
testImplementation(projects.mail.testing)
testImplementation(projects.app.testing)
testImplementation(libs.robolectric)
testImplementation(libs.commons.io)
}
android {
namespace = "com.fsck.k9.storage"
}