アプリケーション (パッケージ) を無効にする Android アプリ (Xposed モジュール) を作成しています。コマンドを実行すると、adb shell
完全に実行されます。しかし、私のアプリケーションからは、なぜそれが機能していないのかわかりません。
コードは次のとおりです。
try {
Process su = Runtime.getRuntime().exec("su");
DataOutputStream outputStream = new DataOutputStream(su.getOutputStream());
outputStream.writeBytes("pm disable com.bt.bms");
outputStream.writeBytes("exit\n");
outputStream.flush();
}
catch (IOException e) {
throw new RuntimeException(e);
}
実行されたコードの結果を確認する方法はありますか?