-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathcompose_compiler_config.conf
More file actions
36 lines (31 loc) · 1.46 KB
/
Copy pathcompose_compiler_config.conf
File metadata and controls
36 lines (31 loc) · 1.46 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
// Compose Compiler Stability Configuration
// Types listed here are treated as stable by the Compose compiler,
// enabling skipping optimizations for composables that accept them.
//
// Only types from non-Compose modules (where @Stable/@Immutable cannot
// be applied directly) belong here.
// Kotlin / JDK time types
kotlin.time.Instant
java.time.Instant
// Solana key hierarchy (open class chain with List<Byte> internals)
com.getcode.solana.keys.Key32
com.getcode.solana.keys.PublicKey
com.getcode.solana.keys.Mint
// Financial model types (services/opencode — no Compose dependency)
com.getcode.opencode.model.financial.Fiat
com.getcode.opencode.model.financial.Rate
com.getcode.opencode.model.financial.LocalFiat
com.getcode.opencode.model.financial.MintMetadata
com.getcode.opencode.model.financial.TokenWithBalance
com.getcode.opencode.model.financial.TokenWithLocalizedBalance
com.getcode.opencode.model.financial.VmMetadata
com.getcode.opencode.model.financial.LaunchpadMetadata
com.getcode.opencode.model.financial.HolderMetrics
com.getcode.opencode.model.financial.HolderMetrics.HolderDelta
com.getcode.opencode.model.financial.SocialLink
com.getcode.opencode.model.financial.SocialLink.Website
com.getcode.opencode.model.financial.SocialLink.X
com.getcode.opencode.model.financial.SocialLink.Telegram
com.getcode.opencode.model.financial.SocialLink.Discord
// Bill customization (contains ByteArray, custom equals)
com.getcode.opencode.model.ui.TokenBillCustomizations