You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
You can prevent automatic activity recreation for certain configuration changes. Activity recreation results in recreating the entire UI, and any objects derived from the Activity. You might have good reasons to avoid this. For example, your app might not need to update resources during a specific configuration change, or you might have a performance limitation. In that case, you can declare that your activity handles the configuration change itself and prevent the system from restarting your activity.
From my understanding, this is an option that should be used only when needed. Considering this is a starter template, if there is no reason to override the default behavior, I'd suggest removing that line entirely. What are your thoughts on this?
The text was updated successfully, but these errors were encountered:
Greetings!
Just like a previous issue mentions, I was wondering if there is a specific reason why this is present by default in the template:
KMP-App-Template/composeApp/src/androidMain/AndroidManifest.xml
Line 17 in 4d0a6a3
The official docs mention that:
From my understanding, this is an option that should be used only when needed. Considering this is a starter template, if there is no reason to override the default behavior, I'd suggest removing that line entirely. What are your thoughts on this?
The text was updated successfully, but these errors were encountered: