We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7fe9e7b commit 1f4f8c8Copy full SHA for 1f4f8c8
docs/essentials/web-authenticator.md
@@ -46,8 +46,8 @@ Android requires an Intent Filter setup to handle your callback URI. This is eas
46
const string CALLBACK_SCHEME = "myapp";
47
48
[Activity(NoHistory = true, LaunchMode = LaunchMode.SingleTop)]
49
-[IntentFilter(new[] { Intent.ActionView },
50
- Categories = new[] { Intent.CategoryDefault, Intent.CategoryBrowsable },
+[IntentFilter(new[] { Android.Content.Intent.ActionView },
+ Categories = new[] { Android.Content.Intent.CategoryDefault, Android.Content.Intent.CategoryBrowsable },
51
DataScheme = CALLBACK_SCHEME)]
52
public class WebAuthenticationCallbackActivity : Xamarin.Essentials.WebAuthenticatorCallbackActivity
53
{
0 commit comments