react-native-zeturf-adyen-payment
Version:
React Native Adyen Payment Native Module
30 lines (24 loc) • 1.05 kB
text/xml
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.rnlib.adyen">
<application>
<activity
android:name=".ui.AdyenComponentActivity"
android:launchMode="singleTask"
android:theme="@style/AdyenCheckout.Translucent">
<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="${checkoutRedirectScheme}" />
</intent-filter>
</activity>
<service
android:name=".AdyenDropInService"
android:permission="android.permission.BIND_JOB_SERVICE" />
<service
android:name=".AdyenComponentService"
android:permission="android.permission.BIND_JOB_SERVICE" />
</application>
</manifest>