19 lines
673 B
XML
19 lines
673 B
XML
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
|
|
|
|
<application>
|
|
<activity
|
|
android:name="com.microsoft.identity.client.BrowserTabActivity"
|
|
android:exported="true">
|
|
<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:host="${applicationId}"
|
|
android:scheme="msauth" />
|
|
</intent-filter>
|
|
</activity>
|
|
</application>
|
|
</manifest> |