core-time: shared date/time helpers (DayWindow + Instant formatting)
First module of floret-kit, the shared Material 3 Expressive design system + plumbing for the Floret app family. core-time is a pure-Kotlin JVM library (DayWindow local-day boundaries + locale/zone-aware Instant formatting), extracted from Agendula. Standalone build + 2 unit tests green. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This commit is contained in:
31
settings.gradle.kts
Normal file
31
settings.gradle.kts
Normal file
@@ -0,0 +1,31 @@
|
||||
pluginManagement {
|
||||
repositories {
|
||||
google {
|
||||
content {
|
||||
includeGroupByRegex("com\\.android.*")
|
||||
includeGroupByRegex("com\\.google.*")
|
||||
includeGroupByRegex("androidx.*")
|
||||
}
|
||||
}
|
||||
mavenCentral()
|
||||
gradlePluginPortal()
|
||||
}
|
||||
}
|
||||
plugins {
|
||||
id("org.gradle.toolchains.foojay-resolver-convention") version "1.0.0"
|
||||
}
|
||||
|
||||
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")
|
||||
Reference in New Issue
Block a user