I have an application in which the application icon is hidden using the following code:
PackageManager p = getApplicationContext().getPackageManager(); p.setComponentEnabledSetting(getComponentName(),PackageManager.COMPONENT_ENABLED_STATE_DISABLED, PackageManager.DONT_KILL_APP);
Will this cause a problem when updating the application (when the new version will be downloaded in the play store)? And if so, are there any ways to solve this problem?
source share