How to find installed applications in Android?
Asked Answered
D

2

3

I want to get the name and package name of a third party application installed in Android. I have tried but I got the name of all applications (third party and pre installed).

How can I identify whether an application is a system application or an other application?

Distress answered 17/6, 2011 at 7:29 Comment(0)
F
7

This will do the trick...cheers :)

PackageManager pm = getPackageManager();
List<PackageInfo> list = pm.getInstalledPackages(0);

for (PackageInfo pi : list) {
   ApplicationInfo ai;
   try {
      ai = pm.getApplicationInfo(pi.packageName, 0);
      System.out.println(">>>>>>packages is<<<<<<<<" + ai.publicSourceDir);

      // this condition if satisfied means the application currently refered by ai
      // variable is
      // a system application
      if ((ai.flags & ApplicationInfo.FLAG_SYSTEM) != 0) {
         Log.d(getClass().getSimpleName(), ">>>>>>packages is system package" + pi.packageName);
       }
    } catch (NameNotFoundException e) {
        Log.d(getClass().getSimpleName(), "Name not found", e);
    }
}
Feeney answered 17/6, 2011 at 7:38 Comment(0)
D
0

Goto DDMS Perspective ---> Click on the Emulator or Device ---> Check File Explorer ---> data --> data folder ---> there will be app names installed, note their package name :)

Hope it helps

Daffie answered 17/6, 2011 at 7:36 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.