我正在尝试在后台安装Android上的APK。当我pm install -r /storage/emulated/0/tmp/demo.apk
直接在shell上安装没有root的APK时。
但是当我尝试以编程方式执行它时它不起作用。这是我使用的代码:
try {
String command = "pm install -r /storage/emulated/0/tmp/demo.apk";
Process process = Runtime.getRuntime().exec(command);
process.waitFor();
} catch (Exception e) {
e.printStackTrace();
}
我是否需要使用任何特殊权限才能使其正常工作