feat(02-04): register Android OIDC callback

- Add AppAuth redirect receiver for recipe://callback
- Preserve existing launcher activity manifest wiring
This commit is contained in:
2026-04-28 15:58:12 +02:00
parent fa78ee31b4
commit 6385453653

View File

@@ -18,6 +18,20 @@
<category android:name="android.intent.category.LAUNCHER"/> <category android:name="android.intent.category.LAUNCHER"/>
</intent-filter> </intent-filter>
</activity> </activity>
<activity
android:exported="true"
android:name="net.openid.appauth.RedirectUriReceiverActivity">
<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="callback"
android:scheme="recipe"/>
</intent-filter>
</activity>
</application> </application>
</manifest> </manifest>