2023-07-18 22:55:46 +02:00
|
|
|
pluginManagement {
|
|
|
|
repositories {
|
|
|
|
google()
|
|
|
|
gradlePluginPortal()
|
|
|
|
mavenCentral()
|
2023-07-19 14:24:07 +02:00
|
|
|
maven("https://plugins.gradle.org/m2/")
|
2023-07-18 22:55:46 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencyResolutionManagement {
|
|
|
|
repositories {
|
|
|
|
google()
|
|
|
|
mavenCentral()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-07-18 23:47:42 +02:00
|
|
|
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")
|
|
|
|
|
2023-07-18 22:55:46 +02:00
|
|
|
rootProject.name = "Raccoon_for_Lemmy"
|
|
|
|
include(":androidApp")
|
2023-07-20 14:24:50 +02:00
|
|
|
include(":shared")
|
2023-09-06 08:21:38 +02:00
|
|
|
include(":resources")
|
2023-07-20 14:24:50 +02:00
|
|
|
include(":core-utils")
|
2023-07-20 21:24:44 +02:00
|
|
|
include(":core-appearance")
|
|
|
|
include(":core-preferences")
|
2023-07-22 22:07:55 +02:00
|
|
|
include(":core-architecture")
|
2023-07-23 11:41:01 +02:00
|
|
|
include(":core-api")
|
2023-09-06 08:21:38 +02:00
|
|
|
include(":core-md")
|
|
|
|
include(":core-commonui")
|
2023-09-27 23:57:41 +02:00
|
|
|
include(":core-commonui:components")
|
2023-09-06 08:21:38 +02:00
|
|
|
include(":core-notifications")
|
2023-09-27 23:57:41 +02:00
|
|
|
include(":core-persistence")
|
2023-12-04 19:36:34 +01:00
|
|
|
include(":core-navigation")
|
2023-08-01 19:03:06 +02:00
|
|
|
include(":domain-lemmy")
|
|
|
|
include(":domain-lemmy:repository")
|
|
|
|
include(":domain-lemmy:data")
|
2023-07-28 23:59:08 +02:00
|
|
|
include(":domain-identity")
|
2023-09-06 08:21:38 +02:00
|
|
|
include(":feature-home")
|
|
|
|
include(":feature-inbox")
|
|
|
|
include(":feature-search")
|
|
|
|
include(":feature-profile")
|
2023-09-21 23:30:42 +02:00
|
|
|
include(":feature-settings")
|