Skip to content Skip to sidebar Skip to footer

Get List Of Non System Applications

I'm able to get a list of installed packages using the package manager, but this includes various system packages . Are there any filters i can apply on this list to only show the

Solution 1:

booleannonSystem= (packageInfo.applicationInfo.flags & ApplicationInfo.FLAG_SYSTEM) == 0;

Solution 2:

You can use intent filtering to get the application list from the home screen:

Intentintent=newIntent(Intent.ACTION_MAIN);
intent.addCategory(Intent.CATEGORY_LAUNCHER);
List<ResolveInfo> apps = getPackageManager().queryIntentActivities(intent, 0);

Solution 3:

THE ABOVE ANSWERS WILL NOT WORK IN ALL CASES

If an Application is a non-system application it must have a launch Intent by which it can be launched. If the launch intent is null then its a system App else its a non-system app

Example of System Apps: "com.android.browser.provider", "com.google.android.voicesearch".

For the above apps you will get NULL when you query for launch Intent.

PackageManagerpm= getPackageManager();
List<ApplicationInfo> packages = pm.getInstalledApplications(PackageManager.GET_META_DATA);
for(ApplicationInfo packageInfo:packages){
    if( pm.getLaunchIntentForPackage(packageInfo.packageName) != null ){
                StringcurrAppName= pm.getApplicationLabel(packageInfo).toString();
               //This app is a non-system app
    }
}

Post a Comment for "Get List Of Non System Applications"