Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ActitivityNotFound Exception on Android 11 #4

Open
Alqueraf opened this issue Jan 13, 2021 · 1 comment
Open

ActitivityNotFound Exception on Android 11 #4

Alqueraf opened this issue Jan 13, 2021 · 1 comment

Comments

@Alqueraf
Copy link

When using the demo project on Android 11 it will crash when using the signIn function due to not being able to launch a Browser.
A tag on the AndroidManifest.xml with an https scheme intent needs to be added:
https://developer.android.com/training/basics/intents/package-visibility-use-cases#check-browser-available

@neeraj168
Copy link

Use this lines of code in AndroidManifest.xml


        <category android:name="android.intent.category.BROWSABLE" />

        <data android:scheme="https" />
    </intent>
    <intent>
        <action android:name="android.support.customtabs.action.CustomTabsService" />
    </intent>
</queries> 

//before Application tag

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants