Skip to content Skip to sidebar Skip to footer

Difference Between Adb "install" Command And "pm Install" Command?

What's the difference between installing an app using the install command and using the package manager's pm install command? Do they do the exact same job? Does one command actual

Solution 1:

adb install is a command to run from a development host, which uploads a package somewhere temporary and then installs it.

pm install is a command to run locally on the device.

adb does indeed utilize the pm program on the device - see the source code at

https://android.googlesource.com/platform/system/core/+/kitkat-mr2.2-release/adb/commandline.c

Post a Comment for "Difference Between Adb "install" Command And "pm Install" Command?"