Java tutorial
//package com.java2s; //License from project: Apache License import android.content.pm.ApplicationInfo; public class Main { public static boolean isSystemApp(ApplicationInfo info) { if ((info.flags & ApplicationInfo.FLAG_UPDATED_SYSTEM_APP) != 0) { return true; } else if ((info.flags & ApplicationInfo.FLAG_SYSTEM) == 0) { return true; } return false; } }