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

Move html-cleaner from app namspace to library to better reflect it's purpose

This commit is contained in:
Wolf-Martell Montwé 2024-02-23 15:08:43 +01:00
parent 435300ef6d
commit 8b41108fb5
No known key found for this signature in database
GPG Key ID: 6D45B21512ACBF72
10 changed files with 6 additions and 3 deletions

View File

@ -6,7 +6,7 @@ plugins {
dependencies {
api(projects.mail.common)
api(projects.backend.api)
api(projects.app.htmlCleaner)
api(projects.library.htmlCleaner)
api(projects.core.android.common)
implementation(projects.plugins.openpgpApiLib.openpgpApi)

View File

@ -9,7 +9,7 @@ application {
}
dependencies {
implementation(projects.app.htmlCleaner)
implementation(projects.library.htmlCleaner)
implementation(libs.clikt)
implementation(libs.okio)

View File

@ -34,7 +34,6 @@ include(
":app:storage",
":app:crypto-openpgp",
":app:testing",
":app:html-cleaner",
)
include(
@ -110,3 +109,7 @@ include(
":cli:html-cleaner-cli",
":cli:translation-cli",
)
include(
":library:html-cleaner",
)