I have a multi module project, in which i have my data models in a separate module, which is not CMP module
Hence compose compiler is not able to Infer the Stability
• Is adding this module in my compose compiler configuration file a good solution ? Docs says that it will then mark all classes as Stable, which imo is forcefully marking them stable and not a good thing to do?
• Other solution is to just make this module a CMP module and let compose compiler infer stability and manually fix any unstable param issue if exists while keeping
kotlin.collections
and
kotlinx.datetime
in the configuration file so they are stable
What do y'all think?