文件名称:Android 静默安装实现方法
文件大小:33KB
文件格式:PDF
更新时间:2024-02-10 03:08:42
id 安装 方法
Android静默安装的方法,静默安装就是绕过安装程序时的提示窗口,直接在后台安装。 注意:静默安装的前提是设备有ROOT权限。 代码如下: /** * 静默安装 * @param file * @return */ public boolean slientInstall(File file) { boolean result = false; Process process = null; OutputStream out = null; try { process = Runtime.getRuntime().exec(su); out =