mirror of
https://github.com/openMF/mifos-mobile.git
synced 2026-02-06 11:26:51 +00:00
14 lines
663 B
Plaintext
14 lines
663 B
Plaintext
// This file contains classes (with possible wildcards) that the Compose Compiler will treat as stable.
|
|
// It allows us to define classes that our not part of our codebase without wrapping them in a stable class.
|
|
// For more information, check https://developer.android.com/jetpack/compose/performance/stability/fix#configuration-file
|
|
|
|
// We always use immutable classes for our data model, to avoid running the Compose compiler
|
|
// in the module we declare it to be stable here.
|
|
org.mifos.mobile.core.model.*
|
|
// Consider kotlin collections stable
|
|
kotlin.collections.*
|
|
java.time.ZoneId
|
|
java.time.ZoneOffset
|
|
// Consider LocalDateTime stable
|
|
java.time.LocalDateTime
|