我遇到了脚本问题,非常奇怪,我在终端下面写了下面的脚本,工作正常,但是当我尝试在我的应用程序中运行它时,就像开始运行然后手机重启一样,有任何想法吗??
String command = "pidof -s " + intent.getComponent().getPackageName() + " | kill -9 .";
Process su = Runtime.getRuntime().exec("su");
DataOutputStream os = new DataOutputStream(su.getOutputStream());
os.writeBytes(command + "\n");
os.flush();