Skip to content

Instantly share code, notes, and snippets.

Keybase proof

I hereby claim:

  • I am ivanarellano on github.
  • I am hubbu (https://keybase.io/hubbu) on keybase.
  • I have a public key whose fingerprint is AB3C A216 B1DE 332C E4FE 1712 41C0 EC77 24CE 1384

To claim this, I am signing this object:

@ivanarellano
ivanarellano / adb-screencap-reference.md
Last active December 19, 2024 04:06
ADB Screencap and Screenrecord Commands on Android 4.4+

Screencap Command Usage

  1. adb shell screencap /sdcard/screencap.png
  2. adb pull /sdcard/screencap.png
  3. (Optional) Delete the file: adb rm /sdcard/screencap.png

Screenrecord Command Usage

  1. adb shell screenrecord /sdcard/screenrecord.mp4
  2. Press Ctrl + C on Mac to stop recording
  3. adb pull /sdcard/screenrecord.mp4
  4. (Optional) Delete the file: adb rm /sdcard/screenrecord.mp4