'How to hide my UPI App in merchant payment page under UPI Apps list?
I am working on Payments app, in which I integrated UPI through PSP bank. Here the requirement is whenever user Deregisters his UPI in my app, my app should not populate in Merchant Applications in Payment page. It should populate in the list whenever user Registers and activates his UPI. I made changes in Manifest file like below, which is static means we need to do changes in my app Manifest file to hide or unhide in merchant app.`
<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="pay"
android:scheme="upi" />
<data
android:host="collect"
android:scheme="upi" />
</intent-filter>
`
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|
