Paynt App Target Information
The Paynt app registers these intent filters for handling payment transactions, administrative operations, and print requests.
These are provided for reference only.
Payment Transactions
<intent-filter>
<action android:name="com.paynt.payment.action.START_TRANSACTION" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data android:scheme="transaction" android:host="paynt" />
</intent-filter>
Administrative Operations
<intent-filter>
<action android:name="com.paynt.admin.action.START_ADMIN" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data android:scheme="admin" android:host="paynt" />
</intent-filter>
Print Operations
<intent-filter>
<action android:name="com.paynt.printer.action.PRINT_RECEIPT" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data android:scheme="printer" android:host="paynt" />
</intent-filter>