-
-
Notifications
You must be signed in to change notification settings - Fork 449
Expand file tree
/
Copy pathcompose_compiler_config.conf
More file actions
22 lines (18 loc) · 861 Bytes
/
compose_compiler_config.conf
File metadata and controls
22 lines (18 loc) · 861 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// This file contains classes (with possible wildcards) that the Compose Compiler will treat as stable.
// It allows us to define classes that are 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
// Meshtastic Models
org.meshtastic.core.model.Node
org.meshtastic.core.model.Message
org.meshtastic.core.database.entity.Reaction
org.meshtastic.core.database.entity.ReactionEntity
org.meshtastic.core.model.**
// Wire / Protocol Buffers (Migration from Google Protobuf)
// Wire generated classes are typically immutable and stable.
org.meshtastic.proto.**
com.squareup.wire.Message
okio.ByteString
// Kotlin Immutable Collections
kotlinx.collections.immutable.*
// External Libraries
com.google.android.gms.maps.model.**