mirror of https://github.com/tasks/tasks
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
897 B
XML
25 lines
897 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<manifest xmlns:tools="http://schemas.android.com/tools"
|
|
xmlns:android="http://schemas.android.com/apk/res/android">
|
|
|
|
<application tools:ignore="MissingApplicationIcon">
|
|
<activity
|
|
android:name=".auth.MicrosoftAuthenticationActivity"
|
|
android:theme="@style/TranslucentDialog"/>
|
|
<activity
|
|
android:name="net.openid.appauth.RedirectUriReceiverActivity"
|
|
android:exported="true"
|
|
tools:node="merge">
|
|
<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>
|