Facing issue-
I have an app in Clover App Market. When an update version is available in App Market and noticed that our App's Latest Version was still the older version in Clover device. I clicked the Sync icon and after a few seconds the version updated and I was prompted to download the update.
Found Solution-
Managed forced update logic with versionCode from our local and API end.
Now are able to open details page of application in clover app market using below code
Intent intent = new Intent("clover.intent.action.START_APP_DETAIL");
intent.putExtra(Intents.EXTRA_APP_ID, "id");
intent.putExtra(Intents.EXTRA_APP_PACKAGE_NAME, "packagename");
startActivity(intent);
Need Solution-
We are able to see Open button but not able to see update button on App Market so any work around any one know?.
Please share any way for force update new version