How to get pid of android application without using adb shell?

44,459

Solution 1

As every application has its own process id, one can get it by

int pid = android.os.Process.myPid();

Solution 2

This also works:

ActivityManager am = (ActivityManager) context.getSystemService(Context.ACTIVITY_SERVICE);
List<ActivityManager.RunningAppProcessInfo> pids = am.getRunningAppProcesses();
int processid = 0;
for (int i = 0; i < pids.size(); i++) {
    ActivityManager.RunningAppProcessInfo info = pids.get(i);
    if (info.processName.equalsIgnoreCase("here your package name")) {
       processid = info.pid;
    } 
}
Share:
44,459
RanjitRock
Author by

RanjitRock

Android Developer

Updated on July 09, 2022

Comments

  • RanjitRock
    RanjitRock almost 2 years

    How can I get an android application pid without using adb shell? Is there any API to get pid. any help will be appreciated