Is it possible to install APK through adb if the file is on the android device?

北城余情 提交于 2020-01-30 08:37:27

问题


Usually if the apk is on my desktop, I would use adb install <path> to get it on my Android device. Somehow I like to know if it is also possible if the apk is on the device. I imagine adb shell would be a start, sadly tho, install <path> afterward doesn't seem to work.


回答1:


adb shell
pm install /location/apk.apk
// if you want to remove the installation package
rm /location/apk.apk


来源:https://stackoverflow.com/questions/45412622/is-it-possible-to-install-apk-through-adb-if-the-file-is-on-the-android-device

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!