mirror of
https://github.com/FluxaMedia/fluxa.git
synced 2026-07-26 20:02:14 +00:00
New :shared module with a fluxa.kmp.compose convention plugin (Compose Multiplatform's runtime/foundation/material3/ui, layered on the existing fluxa.kmp.library android+iOS target setup) plus a smoke-test composable proving a real @Composable using Material3 compiles for android, iosArm64, and iosSimulatorArm64. This is where ui/catalog/mobile/** screens will move to in the next phase, sharing the same UI code between Android mobile and iOS.
23 lines
478 B
Text
23 lines
478 B
Text
pluginManagement {
|
|
includeBuild("build-logic")
|
|
repositories {
|
|
google()
|
|
mavenCentral()
|
|
gradlePluginPortal()
|
|
}
|
|
}
|
|
dependencyResolutionManagement {
|
|
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
|
|
repositories {
|
|
google()
|
|
mavenCentral()
|
|
maven { url = uri("https://jitpack.io") }
|
|
}
|
|
}
|
|
|
|
rootProject.name = "Fluxa"
|
|
include(":core")
|
|
include(":shared")
|
|
include(":data")
|
|
include(":player")
|
|
include(":app")
|