Files
floret-kit/settings.gradle.kts
Jean-Luc Makiola 1bd3e03ad5 components: shared Compose vocabulary (GroupedSurface, InlineTextField, OptionCard, pastelize)
Phase 4 (components). The family's canonical grouped-row primitive
(GroupedSurface/GroupedRow + Position/positionOf, press-morphing tonal
container), the borderless InlineTextField (capitalization parameterized),
the OptionCard selection-dialog pick, and the pastelize() colour softener.
All app-agnostic (no R, no domain) and taken from Agendula's versions as the
canonical reference per design sign-off; apps keep their own identity chips
and compose their own screens from these. android-library, Compose-only.

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
2026-06-28 13:06:34 +02:00

38 lines
1.2 KiB
Kotlin

pluginManagement {
repositories {
google {
content {
includeGroupByRegex("com\\.android.*")
includeGroupByRegex("com\\.google.*")
includeGroupByRegex("androidx.*")
}
}
mavenCentral()
gradlePluginPortal()
}
}
// NB: deliberately NO Gradle Java-toolchain auto-download resolver plugin here.
// Consuming apps build this as an included build, and Calendula publishes via
// official F-Droid reproducible builds whose offline source scanner rejects any
// toolchain resolver that can fetch a JDK at build time. Modules set jvmTarget
// directly and must not add a Java toolchain block that needs such a resolver.
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
}
}
// floret-kit — the shared Material 3 Expressive design system + plumbing for the
// Floret family of apps (Calendula, Agendula, …). Consumed by each app as a git
// submodule wired in via Gradle `includeBuild`, built from source (F-Droid-safe).
rootProject.name = "floret-kit"
include(":core-time")
include(":core-crash")
include(":identity")
include(":components")