I want to know what code do I need to write to return a set of apps that are not system apps.
public static List<?> getInstalledApplication(Context c) {
return c.getPackageManager().getInstalledApplications(PackageManager.GET_META_DATA);
}
This is the code for the method which returns everything. I want to show only apps that are user launch able. How can I do that?