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 authored and mattleibow committed Feb 16, 2024
1 parent 76e9f74 commit 52bb4fd
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 52bb4fd

Please sign in to comment.