android_bootable_recovery

(★ 464)

No description available.

File Explorer

  • adb_install.cpp
  • adb_install.h
  • Android.mk
  • asn1_decoder.cpp
  • asn1_decoder.h
  • backup.cpp
  • bootloader.h
  • bu.cpp
  • bu.h
  • CleanSpec.mk
  • common.h
  • default_device.cpp
  • device.cpp
  • device.h
  • error_code.h
  • fuse_sdcard_provider.cpp
  • fuse_sdcard_provider.h
  • fuse_sideload.cpp
  • fuse_sideload.h
  • install.cpp
  • install.h
  • interlace-frames.py
  • NOTICE
  • print_sha1.h
  • README.md
  • recovery-persist.cpp
  • recovery-persist.rc
  • recovery-refresh.cpp
  • recovery-refresh.rc
  • recovery.cpp
  • recovery_cmds.h
  • res-560dpi
  • restore.cpp
  • roots.cpp
  • roots.h
  • screen_ui.cpp
  • screen_ui.h
  • ui.cpp
  • ui.h
  • unique_fd.h
  • verifier.cpp
  • verifier.h
  • voldclient.cpp
  • voldclient.h
  • wear_touch.cpp
  • wear_touch.h
  • wear_ui.cpp
  • wear_ui.h

# Use via CDN

jsDelivr

jsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.

Command Glossary

Commands referenced in this DOCs, explained below.

🔍

adb reboot

View Details ▼

Reboot a connected Android device or emulator.

adb reboot

Reboot the device normally:

adb reboot bootloader

Reboot the device into bootloader mode:

adb reboot recovery

Reboot the device into recovery mode:

🔍

adb shell

View Details ▼

Run shell commands on a connected Android device or emulator.

adb shell

Start a remote interactive shell on the emulator or device:

tldr {{[-p|--platform]}} android getprop

View documentation for showing Android system properties:

tldr {{[-p|--platform]}} android pm

View documentation for the Android package manager:

🔍

adb

View Details ▼

Android Debug Bridge: communicate with an Android emulator instance or connected Android devices.
Some subcommands such as `shell` have their own usage documentation.

adb start-server

Check whether the adb server process is running and start it:

adb kill-server

Terminate the adb server process:

adb shell

Start a remote shell in the target emulator/device instance:

🔍

fastboot

View Details ▼

Communicate with connected Android devices when in bootloader mode (the one place ADB doesn't work).

fastboot oem unlock

Unlock the bootloader:

fastboot oem lock

Relock the bootloader:

fastboot reboot bootloader

Reboot the device from fastboot mode into fastboot mode again:

// repository documentation