All I am trying to do is update my list on each Install & Uninstall but not on Package Replace .So the main problem is that Install & Uninstall inte
Just check intent.getBooleanExtra(Intent.EXTRA_REPLACING, false):
intent.getBooleanExtra(Intent.EXTRA_REPLACING, false)
if (!intent.getAction().equals(Intent.ACTION_PACKAGE_REPLACED) && intent.getBooleanExtra(Intent.EXTRA_REPLACING, false)) return;