document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. Process p = Runtime.getRuntime().exec("su");
  2. DataOutputStream os = new DataOutputStream(p.getOutputStream());
  3. os.writeBytes("pm grant "+context.getPackageName()+" android.permission.WRITE_SECURE_SETTINGS \\n");
  4. os.writeBytes("exit\\n");
  5. os.flush();
');