I am using this code to the third party applications :
List<ApplicationInfo> packages = pm.getInstalledApplications(PackageManager.GET_META_DATA);
for (ApplicationInfo appInfo : packages)
{
if ((appInfo.flags & ApplicationInfo.FLAG_SYSTEM) != 0)
{
// IS A SYSTEM APP
}
else
{
// Third Party Applications
}
}
This code is almost working fine , but I am not getting some third party applications. Like Gmail , Google Play Store. Some applications which I am getting are Google Play Services , Skype.
What could be the problem ? Am I missing some flags ?