question

dhanaraj avatar image
dhanaraj asked Raymond Lee Deactivated answered

Is there any intent for setup app

I want to navigate my app to clover set up app. Is it possible?
Intents
10 |2000

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.

1 Answer

Raymond Lee avatar image
Raymond Lee Deactivated answered
Hi @Dhanaraj,

Yes, it is possible, to do so you can start an intent to "com.clover.intent.action.START_SETUP".

Intent intent = new Intent("com.clover.intent.action.START_SETUP");
startActivity(intent);

If there is a specific page in the Clover Setup app you would like to navigate to, here is the full list:
        com.clover.intent.action.START_SETUP_TAX_RATES
        com.clover.intent.action.START_SETUP_OFFLINE_PAYMENT
        com.clover.intent.action.START_SETUP_PAYMENT
        com.clover.intent.action.START_SETUP_TIPS
        com.clover.intent.action.START_SETUP
        com.clover.intent.action.START_SETUP_DEVICE_DETAILS

Hope that helps,

Raymond
10 |2000

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.

Welcome to the
Clover Developer Community