Skip to content

Instantly share code, notes, and snippets.

@ishitcno1
Created March 17, 2015 08:14
Show Gist options
  • Save ishitcno1/edf373365bfc4ee643d3 to your computer and use it in GitHub Desktop.
Save ishitcno1/edf373365bfc4ee643d3 to your computer and use it in GitHub Desktop.
android is system app
private boolean isSystemApp(PackageInfo info) {
return (info.applicationInfo.flags & ApplicationInfo.FLAG_SYSTEM) == 1;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment