How do we list apps in the refund screen like this?
I have implemented the intent on an activity for our app like so:
<activity
android:name=".activities.RefundHandlerActivity"
android:exported="true">
<intent-filter>
<action android:name="clover.intent.action.MANUAL_REFUND" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
But refunds just go straight through without offering the choice to select our app.