zainstaluj apk w tle za pomocą busybox

czy mogę zainstalować apk w tle za pomocą busybox na urządzeniu root?

widzę coś takiego, ale to nie działa

process install;
CommandCapture command = new CommandCapture(0, "chmod 777 /data/app");
RootTools.getShell(true).add(command).waitForFinish(); 
CommandCapture command2 = new CommandCapture(0, "chmod 777 /system/xbin/busybox");
RootTools.getShell(true).add(command2).waitForFinish();
install = Runtime.getRuntime().exec("/system/xbin/busybox install " + Environment.getExternalStorageDirectory() + "/Download/" + "xxx.apk /data/app/xxx.apk");

questionAnswers(3)

yourAnswerToTheQuestion