Skip to content

Instantly share code, notes, and snippets.

@hisetu
Created October 14, 2019 03:31
Show Gist options
  • Save hisetu/4a19742a4221c3eeb93a37b5a223cf60 to your computer and use it in GitHub Desktop.
Save hisetu/4a19742a4221c3eeb93a37b5a223cf60 to your computer and use it in GitHub Desktop.
list third-party package
List<ApplicationInfo> apps = getPackageManager().getInstalledApplications(0);
for (int i=0; i < apps.size(); i++)
{
if ((apps.get(i).flags & ApplicationInfo.FLAG_SYSTEM) != 1)
{
//System app
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment