Guest User

Untitled

a guest
Nov 17th, 2017
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. Process process = Runtime.getRuntime().exec("su");
  2. DataOutputStream out = new DataOutputStream(process.getOutputStream());
  3. out.writeBytes("mount -o remount,rw -t yaffs2 /dev/block/mtdblock3 /systemn");
  4. out.writeBytes("cat /sdcard/myApp.apk > /system/app/myApp.apkn");
  5. out.writeBytes("mount -o remount,ro -t yaffs2 /dev/block/mtdblock3 /systemn");
  6. out.writeBytes("exitn");
  7. out.flush();
  8. process.waitFor();
Add Comment
Please, Sign In to add comment