diff --git a/docs/essentials/web-authenticator.md b/docs/essentials/web-authenticator.md index 4925b88f6..0388e6ed2 100644 --- a/docs/essentials/web-authenticator.md +++ b/docs/essentials/web-authenticator.md @@ -42,7 +42,7 @@ Android requires an Intent Filter setup to handle your callback URI. This is eas ```csharp const string CALLBACK_SCHEME = "myapp"; -[Activity(NoHistory = true, LaunchMode = LaunchMode.SingleTop)] +[Activity(NoHistory = true, LaunchMode = LaunchMode.SingleTop, Exported = true)] [IntentFilter(new[] { Android.Content.Intent.ActionView }, Categories = new[] { Android.Content.Intent.CategoryDefault, Android.Content.Intent.CategoryBrowsable }, DataScheme = CALLBACK_SCHEME)]