Hey guys;
I wanted to get a list of installed apps on a device **by** using `getInstalledApplications()` method from `MockPackageManager` class (Yes it is deprecated). I used the following code (in my activity):
MockPackageManager mpm = new MockPackageManager();
List<ApplicationInfo>...