Skip to content

Commit

Permalink
Change activity attributes
Browse files Browse the repository at this point in the history
Changes the activity attributes on intermediate activities as they don't need to be exported.
  • Loading branch information
Redth committed Mar 19, 2024
1 parent 93940d6 commit 775cace
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

namespace Microsoft.Maui.ApplicationModel
{
[Activity(ConfigurationChanges = ConfigChanges.Orientation | ConfigChanges.ScreenSize, Exported = true)]
[Activity(ConfigurationChanges = ConfigChanges.Orientation | ConfigChanges.ScreenSize, Exported = false)]
class IntermediateActivity : Activity
{
const string launchedExtra = "launched";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

namespace Microsoft.Maui.Authentication
{
[Activity(ConfigurationChanges = ConfigChanges.Orientation | ConfigChanges.ScreenSize, Exported = true)]
[Activity(ConfigurationChanges = ConfigChanges.Orientation | ConfigChanges.ScreenSize, Exported = false)]
class WebAuthenticatorIntermediateActivity : Activity
{
const string launchedExtra = "launched";
Expand Down

0 comments on commit 775cace

Please sign in to comment.