How can I get the list of UID (the list of apps installed in Android ) device.
Asked
Active
Viewed 1,350 times
1 Answers
2
The UID of an application can be found in the ApplicationInfo
class. Fetch it for all the applications on a device like this:
List<ApplicationInfo> appsInfo = context.getPackageManager()
.getInstalledApplications(PackageManager.GET_UNINSTALLED_PACKAGES);

Graeme Duncan
- 8,166
- 2
- 20
- 13