NuvioTV/compose_stability_config.conf

22 lines
656 B
Text

// Classes that should be treated as stable by the Compose compiler.
// This prevents unnecessary recompositions for classes that are effectively immutable.
// See: https://developer.android.com/develop/ui/compose/performance/stability/fix
// Domain models
com.nuvio.tv.domain.model.*
// Torrent state
com.nuvio.tv.core.torrent.TorrentState
// UI state classes
com.nuvio.tv.ui.screens.search.SearchUiState
com.nuvio.tv.ui.screens.search.DiscoverCatalog
com.nuvio.tv.ui.components.PosterCardStyle
// External extension types
com.lagradost.cloudstream3.*
// Collections from kotlinx
kotlin.collections.List
kotlin.collections.Map
kotlin.collections.Set