Android apk using busybox command line

I want to install apk silently on an Android phone, I found this solution (link) , this is how to install apk using the busybox command line, but when I connect the busybox install path / to / apkfile tape, it will not work, can someone help me, giving a few examples.

+6
source share
1 answer

The command line program that does this is pm : package manager. So try pm install apkfile If you run the command with no arguments, it will print some help text. I do not know how quiet it will be, but in any case you should not hide the installation from the end user.

+16
source

Source: https://habr.com/ru/post/902824/


All Articles