Hello,
after I delete a custom tender using the tender connector, the state (list of tenders) is not automatically synchronized (waiting does not help) between the Rest API and the device (sandbox emulator). I have posted this as a bug to the dev@clover.com, but meanwhile I see that the list of tenders will get synchronized after I go to the App Market application and I push the synchronization icon.
As a workaround, is there a way to call this synchronization from the code after I delete the custom tender? I mean something specific for tenders like:
Bundle extras = new Bundle();
extras.putBoolean(ContentResolver.SYNC_EXTRAS_MANUAL, true);
extras.putBoolean(ContentResolver.SYNC_EXTRAS_EXPEDITED, true);
context.getContentResolver().requestSync(CloverAccount.getAccount(context),OrderContract.AUTHORITY, extras);
Thank you, Ondrej