Skip to end of banner
Go to start of banner

Android Manifest (Pay Connect)

Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 6 Next »

To enable receiving payment requests, add an intent filter for the ginipay URL to your manifest. This also allows other Gini SDKs (e.g., Gini Health SDK) to detect if your app is installed:

<intent-filter>
    <action android:name="android.intent.action.VIEW" />

    <category android:name="android.intent.category.DEFAULT" />

    <data
        android:host="payment"
        android:scheme="ginipay" />
</intent-filter>

The intent filter can be added to the activity which handles the payment flow of that payment request.

  • No labels