@animo-id/expo-digital-credentials-api
Version:
Expo wrapper around Android Digital Credentials API
16 lines • 728 B
text/xml
<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>