Mobile Base Implementation
Prepare Scheme format
in info.plist file
<array>
	<dist>
		<key>CFBundleURLSchemes</key>
		<array>
			<string>payon.online.card</string>
		</array>
	</dist>
</array>In Manifest.xml file
<activity
    android:name="Your Activity"
    android:configChanges="orientation|screenSize"
    android:screenOrientation="portrait"
    android:exported="true">
    <intent-filter android:label="filter_title_view_app_from_web">
        <action android:name="android.intent.action.VIEW" />
        <category android:name="android.intent.category.DEFAULT" />
        <category android:name="android.intent.category.BROWSABLE" />
        <data android:scheme="payon.online.card"
            android:pathPrefix="/parameters"
            android:host="payon" />
    </intent-filter>
</activity>anScheme Format 
payon.online.card://[name]?data=callbackData
Example Scheme format defined by PAYON Apps
payon.online.card://payon/parameters/?data=000201010212520458115802KH5921PAYON PAYMENT GATEWAY6010PHNOM PENH5303840540136257011620211201000080350308C00001430710CT030000038302108401991250012kh.com.payon0105PAYON6304CF50
Data Format
The data format will be in KHQR format by Bakong. Please see PAYON's KHQR Specification
Last updated