<manifest xmlns:android="http://schemas.android.com/apk/res/android">
    <application>
        <activity
            android:name=".DigitalCredentialsApiActivity"
            android:theme="@style/Theme.Transparent"
            android:windowSoftInputMode="adjustResize"
            android:exported="true"
            android:launchMode="standard">
            <intent-filter>
                <action android:name="androidx.identitycredentials.action.GET_CREDENTIALS"/>
                <action android:name="androidx.credentials.registry.provider.action.GET_CREDENTIAL"/>
                <category android:name="android.intent.category.DEFAULT"/>
            </intent-filter>
        </activity>
    </application>
</manifest>