我试图在我的根手机上卸载应用程序,我使用如何以 root 权限卸载 Android 应用程序中的代码?,我尝试了这个建议,但我失败了。这是我的代码:
Process process;
try {
process = Runtime.getRuntime().exec("su");
DataOutputStream os = new DataOutputStream(process.getOutputStream());
os.writeBytes("pm uninstall com.lixiancheng.orangemusic"+"; \n");
os.flush();
} catch (IOException e) {
e.printStackTrace();
}
为什么我无法卸载应用程序?代码有问题吗?