We are building an app would like help on the following two things.
We want to change the name of the tender we have already created, how do we do that?
How can we delete the tender when the merchant uninstall the app?
thanks
We are building an app would like help on the following two things.
We want to change the name of the tender we have already created, how do we do that?
How can we delete the tender when the merchant uninstall the app?
thanks
We had a similar issue and as far as we could find out - this is not possible. Hopefully soon
/** * An intent service intent that indicates the target app will be uninstalled in the * next 5 seconds. After 5 seconds any processes associated with the app are killed and the app is * uninstalled. The service started by this intent must be an intent service. * <p/> * Apps can use this time to perform any required cleanup actions. For example, remove any * inventory items your app created that do not make sense without your app * or order types created that are specific to your app. This intent should not trigger * anything that is visible to or require any interaction with the user. Preferably * all work is completed synchronously within the bounds of the * {@link android.app.IntentService}'s * {@link android.app.IntentService#onHandleIntent(Intent)} method. * <p/> * Note that this is a service intent, not a broadcast intent. It must be * received by an (intent) service, not a broadcast receiver. * <pre> * {@code * <service * android:name=".MyCleanupService" * android:exported="true"> * <intent-filter> * <action android:name="com.clover.intent.action._APP_PRE_UNINSTALL"/> * </intent-filter> * </service> * } * </pre> */ public static final String ACTION_APP_PRE_UNINSTALL = "com.clover.intent.action.APP_PRE_UNINSTALL";So you could add this, and then use TenderConnector.deleteTender() from your cleanup service.
If you haven't been contacted, can you email appmarketbusiness@clover.com? I passed on your predicament.
3 People are following this question.