2023-01-08 02:14:00 +00:00
|
|
|
pluginManagement {
|
|
|
|
repositories {
|
|
|
|
gradlePluginPortal()
|
|
|
|
google()
|
|
|
|
mavenCentral()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-12-07 03:34:52 +00:00
|
|
|
dependencyResolutionManagement {
|
|
|
|
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
|
|
|
|
repositories {
|
|
|
|
google()
|
|
|
|
mavenCentral()
|
2023-02-13 14:06:32 +00:00
|
|
|
maven(url = "https://jitpack.io")
|
2022-12-07 03:34:52 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-02-13 16:42:20 +00:00
|
|
|
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")
|
|
|
|
|
2023-02-15 13:09:31 +00:00
|
|
|
rootProject.name = "k-9"
|
|
|
|
|
2023-02-13 15:02:16 +00:00
|
|
|
includeBuild("build-plugin")
|
|
|
|
|
2023-03-14 12:06:29 +00:00
|
|
|
include(
|
2023-04-04 15:12:39 +00:00
|
|
|
":app-feature-preview",
|
2023-03-14 12:06:29 +00:00
|
|
|
":app-ui-catalog",
|
|
|
|
)
|
|
|
|
|
2023-02-13 16:42:20 +00:00
|
|
|
include(
|
|
|
|
":app:k9mail",
|
|
|
|
":app:ui:base",
|
|
|
|
":app:ui:legacy",
|
|
|
|
":app:ui:message-list-widget",
|
|
|
|
":app:core",
|
|
|
|
":app:storage",
|
|
|
|
":app:crypto-openpgp",
|
|
|
|
":app:testing",
|
2023-02-14 11:28:43 +00:00
|
|
|
":app:html-cleaner",
|
2023-02-13 16:42:20 +00:00
|
|
|
)
|
|
|
|
|
2023-03-14 15:27:26 +00:00
|
|
|
include(
|
2023-06-29 09:26:07 +00:00
|
|
|
":feature:launcher",
|
2023-08-30 14:45:01 +00:00
|
|
|
":feature:onboarding",
|
|
|
|
)
|
|
|
|
|
|
|
|
include(
|
2023-07-04 09:52:39 +00:00
|
|
|
":feature:account:common",
|
2023-06-22 15:21:50 +00:00
|
|
|
":feature:account:oauth",
|
2023-08-30 14:45:01 +00:00
|
|
|
":feature:account:setup",
|
2023-09-05 15:10:44 +00:00
|
|
|
":feature:account:server:certificate",
|
2023-09-06 11:41:03 +00:00
|
|
|
":feature:account:server:config",
|
2023-09-01 10:57:32 +00:00
|
|
|
":feature:account:server:validation",
|
2023-08-30 14:45:01 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
include(
|
2023-04-25 17:30:14 +00:00
|
|
|
":feature:autodiscovery:api",
|
|
|
|
":feature:autodiscovery:providersxml",
|
|
|
|
":feature:autodiscovery:srvrecords",
|
2023-04-25 17:33:51 +00:00
|
|
|
":feature:autodiscovery:autoconfig",
|
2023-05-31 11:04:29 +00:00
|
|
|
":feature:autodiscovery:service",
|
2023-03-14 15:27:26 +00:00
|
|
|
)
|
|
|
|
|
2023-02-15 17:52:35 +00:00
|
|
|
include(
|
2023-02-28 17:03:27 +00:00
|
|
|
":core:common",
|
2023-06-30 12:34:55 +00:00
|
|
|
":core:featureflags",
|
2023-02-28 17:03:27 +00:00
|
|
|
":core:testing",
|
|
|
|
":core:android:common",
|
2023-06-20 11:23:57 +00:00
|
|
|
":core:android:testing",
|
2023-03-14 12:33:16 +00:00
|
|
|
":core:ui:compose:common",
|
2023-02-21 13:39:52 +00:00
|
|
|
":core:ui:compose:designsystem",
|
2023-02-17 13:49:08 +00:00
|
|
|
":core:ui:compose:theme",
|
2023-03-02 13:03:28 +00:00
|
|
|
":core:ui:compose:testing",
|
2023-02-15 17:52:35 +00:00
|
|
|
)
|
|
|
|
|
2023-02-13 16:42:20 +00:00
|
|
|
include(
|
|
|
|
":ui-utils:LinearLayoutManager",
|
|
|
|
":ui-utils:ItemTouchHelper",
|
2023-02-14 11:28:43 +00:00
|
|
|
":ui-utils:ToolbarBottomSheet",
|
2023-02-13 16:42:20 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
include(
|
|
|
|
":mail:common",
|
|
|
|
":mail:testing",
|
|
|
|
":mail:protocols:imap",
|
|
|
|
":mail:protocols:pop3",
|
2023-02-14 11:28:43 +00:00
|
|
|
":mail:protocols:smtp",
|
2023-02-13 16:42:20 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
include(
|
|
|
|
":backend:api",
|
|
|
|
":backend:testing",
|
|
|
|
":backend:imap",
|
|
|
|
":backend:pop3",
|
|
|
|
":backend:jmap",
|
2023-02-14 11:28:43 +00:00
|
|
|
":backend:demo",
|
2023-02-13 16:42:20 +00:00
|
|
|
)
|
|
|
|
|
2023-02-13 14:06:32 +00:00
|
|
|
include(":plugins:openpgp-api-lib:openpgp-api")
|
2023-02-13 16:42:20 +00:00
|
|
|
|
2023-05-19 09:23:55 +00:00
|
|
|
include(
|
|
|
|
":cli:autodiscovery-cli",
|
|
|
|
":cli:html-cleaner-cli",
|
|
|
|
)
|