Skip to content

Commit 1f4f8c8

Browse files
authored
Use Fully Qualified Namespaces for 'Android.Content.Intent' (#1697)
1 parent 7fe9e7b commit 1f4f8c8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/essentials/web-authenticator.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,8 +46,8 @@ Android requires an Intent Filter setup to handle your callback URI. This is eas
4646
const string CALLBACK_SCHEME = "myapp";
4747

4848
[Activity(NoHistory = true, LaunchMode = LaunchMode.SingleTop)]
49-
[IntentFilter(new[] { Intent.ActionView },
50-
Categories = new[] { Intent.CategoryDefault, Intent.CategoryBrowsable },
49+
[IntentFilter(new[] { Android.Content.Intent.ActionView },
50+
Categories = new[] { Android.Content.Intent.CategoryDefault, Android.Content.Intent.CategoryBrowsable },
5151
DataScheme = CALLBACK_SCHEME)]
5252
public class WebAuthenticationCallbackActivity : Xamarin.Essentials.WebAuthenticatorCallbackActivity
5353
{

0 commit comments

Comments
 (0)