0
我試圖卸載已植根電話上的應用程序,並使用How to uninstall Android App with root permissions?中的代碼,並嘗試了該建議,但失敗了。 這裏是我的代碼:?如何卸載已植根電話上的應用程序
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();
}
爲什麼我不能卸載應用程序與代碼的任何問題嗎?
我不認爲\ n是有效的在這裏。 –
我試圖刪除這些\ n,再次失敗。 – orzangleli