The command adb shell pm path
is used to display the path of the package associated with a specific Android package name. This command is useful for retrieving the installation path of an app on an Android device.
First we need to identify whether the package we are looking for to identify apk name has been installed or not. For example, we are looking for a package “com.linkedin.android” which is a Linkedin android application.
$ adb shell cmd package list package | grep linkedin
If this command returned like “package:com.linkedin.android” it means the application has been installed and command returned with the package name. If the application is not installed above command will return empty.
Now, using the above package name, we can identify the path as,
$ adb shell pm path com.linkedin.android
package:/data/app/com.linkedin.android-VIOCcgXsvHQIZu8pnDQ9Og==/base.apk
Since this is an application installed from playstore, it shown the path in /data/app, now lets identify the location of any system application.
$ adb shell
$ cmd package list package | grep launcher
package:com.evenwell.foxlauncher.partner
package:com.android.launcher3
package:com.evenwell.foxlauncher.overlay.base.s600ww
package:com.android.launcher3.overlay.base.s600ww
$ pm path com.android.launcher3
package:/system/priv-app/NBBLauncher/NBBLauncher.apk
This shown the path of the launcher on Nokia 7+ mobile.