Apk Silent安装android

时间:2013-01-16 05:10:34

标签: java android

我想知道,如何在不使用意图的情况下以编程方式安装apk(即没有用户提示的静默安装)?

关于这一点,我做过研究,只有在设备扎根但我看到很少的应用程序如Appbrain和airwatch,我要求使用enterprice应用程序时,是否有任何解决方法?

我也引用了这个帖子Silent installation on Android devices

你有什么想法吗?

1 个答案:

答案 0 :(得分:3)

您需要有根设备才能执行此操作。 ACTION_PACKAGE_INSTALL从未实际使用过,并且据称需要成为系统应用程序。

exec = Runtime.getRuntime().exec(new String[]{"mv /path/to.apk /system/app/theapp.apk"});