Created
March 17, 2015 08:14
-
-
Save ishitcno1/edf373365bfc4ee643d3 to your computer and use it in GitHub Desktop.
android is system app
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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