react-native-azure-auth icon indicating copy to clipboard operation
react-native-azure-auth copied to clipboard

Macbook (m1) CPU Apple Selecon Android redirect intent-filter crashed (app blackout)

Open sarayootSkoo opened this issue 3 years ago • 0 comments

<!--Intent filter to capture System Browser or Authenticator calling back to our app after sign-in-->
<activity
    android:name="com.microsoft.identity.client.BrowserTabActivity">
    <intent-filter>
        <action android:name="android.intent.action.VIEW" />
        <category android:name="android.intent.category.DEFAULT" />
        <category android:name="android.intent.category.BROWSABLE" />
        <data android:scheme="msauth"
            android:host="Enter_the_Package_Name"
            android:path="/Enter_the_Signature_Hash" />
    </intent-filter>
</activity>


sarayootSkoo avatar Nov 16 '22 10:11 sarayootSkoo