20 lines
747 B
XML
Raw Normal View History

2022-05-09 19:56:05 +02:00
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
2021-09-18 23:37:52 +02:00
<application>
<activity
android:name="de.mm20.launcher2.gservices.GoogleAuthRedirectActivity"
android:theme="@style/GoogleSigninTheme"
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:path="/google-auth-redirect"
android:scheme="${applicationId}" />
</intent-filter>
</activity>
</application>
</manifest>