Table of Contents

Shuame

Shuame is a Chinese app for Windows. It could be Root Genius is the English translation. How can we be sure this is safe, not malware, not stealing IMEA numbers?

Videos

Apps

Resources

TWRP

ADB

Command Action
adb disable-veritydisable checking of block devices
adb shell “getprop ro.oem_unlock_supported”see if unlocking is supported
adb reboot-bootloaderboot into “fastboot mode”
adb rootget status of rooting

Fastboot

Some commands once in fastboot mode:

Command Action
fastboot oem device-info
fastboot oem unlockunlock the bootloader (2014 and lower)
fastboot flashing unlock_criticalunlock the bootloader (2015 and higher)
fastboot rebootleave fastboot mode

Wi-Fi

Custom Launcher

App and file permissions

Giving an app root access

Apps need to be system apps to have root-type privs

For apps to have root access they need to be system apps. For KitKat the app needs to be in /system/priv-app with 644 permissions.

Emulator

To give emulator root:

  1. change to directory where emulator is located, probably something like: ~/.android/avd
  2. start the emulator yourself with an incantation similar to: ~/Android/Sdk/emulator/emulator -avd Nexus_4_API_19 -writable-system -selinux disabled -qemu -enable-kvm
  3. in emulator shell: mount -o rw,remount /system

not fully tested

Tips and Tricks