List<PackageInfo> pkginfoList = getPackageManager()
.getInstalledPackages(0);
How to Sort the PackageInfo
, i did ApplicationInfo
thats working fine
Collections.sort(installedList, new ApplicationInfo.DisplayNameComparator(packageManager));
but i want implement PackageInfo
also..
i'm not sure how to do.. Please any one help me...!