react-native-zeturf-adyen-payment
Version:
React Native Adyen Payment Native Module
36 lines (30 loc) • 1.3 kB
text/xml
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.rnlib.adyen"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk
android:minSdkVersion="21"
android:targetSdkVersion="29" />
<application>
<activity
android:name="com.rnlib.adyen.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="dollar_openBracket_applicationId_closeBracket"
android:scheme="adyencheckout" />
</intent-filter>
</activity>
<service
android:name="com.rnlib.adyen.AdyenDropInService"
android:permission="android.permission.BIND_JOB_SERVICE" />
<service
android:name="com.rnlib.adyen.AdyenComponentService"
android:permission="android.permission.BIND_JOB_SERVICE" />
</application>
</manifest>