21

How do I root the Android emulator? I need root to install an .apk file on the emulator.

eldarerathis
  • 36,868
  • 16
  • 145
  • 176
mahdi
  • 641
  • 3
  • 6
  • 8

1 Answers1

23

The Android emulator gives you root access, you don't need to root it. Check out the emulator section on android.com for details on how to do things as root, for example:

-shell

Create a root shell console on the current terminal. It differs from the adb shell command in the following ways:

  • It creates a root shell that allows you to modify many parts of the system.
  • It works even if the adb daemon in the emulated system is broken.
  • Pressing Ctrl+C (⌘C) stops the emulator, instead of the shell.

For example:

$ emulator @Nexus_5X_API_23 -shell
Matthew Read
  • 50,777
  • 30
  • 148
  • 275