Repo created
This commit is contained in:
parent
75dc487a7a
commit
39c29d175b
6317 changed files with 388324 additions and 2 deletions
45
legacy/common/build.gradle.kts
Normal file
45
legacy/common/build.gradle.kts
Normal file
|
|
@ -0,0 +1,45 @@
|
|||
plugins {
|
||||
id(ThunderbirdPlugins.Library.android)
|
||||
}
|
||||
|
||||
dependencies {
|
||||
implementation(projects.legacy.ui.legacy)
|
||||
implementation(projects.legacy.core)
|
||||
implementation(projects.legacy.storage)
|
||||
implementation(projects.legacy.cryptoOpenpgp)
|
||||
implementation(projects.backend.imap)
|
||||
implementation(projects.backend.pop3)
|
||||
|
||||
implementation(projects.core.featureflag)
|
||||
implementation(projects.core.logging.api)
|
||||
implementation(projects.feature.launcher)
|
||||
|
||||
implementation(projects.feature.account.setup)
|
||||
implementation(projects.feature.account.edit)
|
||||
implementation(projects.feature.navigation.drawer.api)
|
||||
implementation(projects.feature.settings.import)
|
||||
|
||||
implementation(projects.feature.widget.unread)
|
||||
implementation(projects.feature.widget.messageList)
|
||||
|
||||
implementation(libs.androidx.appcompat)
|
||||
implementation(libs.androidx.core.ktx)
|
||||
implementation(libs.preferencex)
|
||||
implementation(libs.kotlinx.coroutines.core)
|
||||
implementation(libs.appauth)
|
||||
|
||||
implementation(libs.glide)
|
||||
annotationProcessor(libs.glide.compiler)
|
||||
|
||||
if (project.hasProperty("k9mail.enableLeakCanary") && project.property("k9mail.enableLeakCanary") == "true") {
|
||||
debugImplementation(libs.leakcanary.android)
|
||||
}
|
||||
|
||||
testImplementation(projects.core.logging.testing)
|
||||
testImplementation(libs.robolectric)
|
||||
testImplementation(projects.feature.account.fake)
|
||||
}
|
||||
|
||||
android {
|
||||
namespace = "com.fsck.k9.common"
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue