0
0
mirror of https://github.com/thunderbird/thunderbird-android.git synced 2024-09-19 19:52:14 +02:00

Declare widget transient dependencies

This commit is contained in:
Wolf-Martell Montwé 2024-07-01 17:43:51 +02:00
parent f4c48deaa1
commit 57da1a1b47
No known key found for this signature in database
GPG Key ID: 6D45B21512ACBF72
3 changed files with 23 additions and 6 deletions

View File

@ -3,9 +3,13 @@ plugins {
}
dependencies {
implementation(projects.app.ui.legacy)
implementation(projects.app.core)
api(projects.app.core)
implementation(projects.app.ui.legacy)
implementation(projects.core.ui.legacy.designsystem)
implementation(projects.mail.common)
implementation(libs.androidx.appcompat)
implementation(libs.timber)
}

View File

@ -3,8 +3,13 @@ plugins {
}
dependencies {
implementation(projects.app.ui.legacy)
api(projects.app.ui.legacy)
implementation(projects.app.core)
implementation(projects.core.ui.legacy.theme2.common)
implementation(libs.androidx.annotation)
implementation(libs.androidx.lifecycle.viewmodel)
}
android {

View File

@ -3,10 +3,18 @@ plugins {
}
dependencies {
implementation(projects.app.ui.legacy)
implementation(projects.app.core)
api(projects.app.core)
api(projects.app.ui.base)
api(projects.app.ui.legacy)
api(projects.mail.common)
implementation(libs.preferencex)
api(libs.preferencex)
implementation(projects.core.ui.legacy.designsystem)
implementation(libs.androidx.fragment)
implementation(libs.androidx.lifecycle.viewmodel)
implementation(libs.androidx.preference)
implementation(libs.timber)
testImplementation(libs.robolectric)