2023-07-18 22:55:46 +02:00
|
|
|
pluginManagement {
|
|
|
|
repositories {
|
|
|
|
google()
|
|
|
|
gradlePluginPortal()
|
|
|
|
mavenCentral()
|
2023-07-19 14:24:07 +02:00
|
|
|
maven("https://maven.pkg.jetbrains.space/public/p/compose/dev")
|
|
|
|
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("VERSION_CATALOGS")
|
|
|
|
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")
|
|
|
|
include(":feature-home")
|
|
|
|
include(":feature-inbox")
|
|
|
|
include(":feature-search")
|
|
|
|
include(":feature-profile")
|
|
|
|
include(":feature-settings")
|
|
|
|
include(":feature-example")
|
|
|
|
include(":core-utils")
|
2023-07-20 21:24:44 +02:00
|
|
|
include(":core-appearance")
|
|
|
|
include(":core-preferences")
|