Android 使用 busybox 命令行安装 apk
我想在Android手机中静默安装apk,我找到了这个解决方案 (链接),是如何使用busybox命令行安装apk,但是当我将busybox安装路径/to/apk文件录下来时,它不起作用,有人可以帮我举一些例子吗?
I want to install apk silently in android phone, I have found this solution (Link), is how to install apk using busybox command line, but when i tape busybox install path/to/apkfile, it does not work, can someone help me by giving some examples please.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
执行此操作的命令行程序是
pm
:包管理器。所以尝试pm install apkfile
如果您运行不带参数的命令,它将打印出一些帮助文本。我不知道它会有多安静 - 但无论如何你都不应该向最终用户隐藏安装。
The command line program that does this is
pm
: package manager. So trypm install apkfile
If you run the command with no arguments it will print out some help text. I don't know how silent it will be - but then you should not be hiding installs from the end user anyway.