I want to show the list of applications installed on user device which have the internet permission on their manifest file currently I am getting all of them by using this code:
PackageManager packageManager = mainActivity.getPackageManager();
apps = packageManager.getInstalledApplications(0);
Collections.sort(apps, new ApplicationInfo.DisplayNameComparator(packageManager));