I have a application in which the app icon is hidden using following code:
PackageManager p = getApplicationContext().getPackageManager();
p.setComponentEnabledSetting(getComponentName(),PackageManager.COMPONENT_ENABLED_STATE_DISABLED,
PackageManager.DONT_KILL_APP);
Will this cause an issue in updating the application (when a new version is uploaded in play store)? And if yes, is there any workaround for this problem?