How can I get a list of non-system apps for my RecyclerView
?
I want to filter my list not to include system apps
- The current app count for system apps is
353
but it should be around15-20
- I have used
packageManager.getInstalledPackages(0)
to get the all the installed packages in the device and to differentiate between system apps and third party apps i have usedapplicationInfo.flags
andpackage.ApplicationInfo.FLAG_SYSTEM)==0
- Here is a ScreenShot
Please help!!
Any language, java
or kotlin
is appreciated.
THANKS IN ADVANCE..