Recording the screen on Android without installing additional applications is a task that seems impossible to many users. However, modern versions of the operating system and hidden developer tools make it possible to do without Google Play or third-party APK. In this article we will analyze all the working methods, including little-known functions Android 10+, commands ADB, and even methods for devices with root access.

The main problem when recording a screen without applications is manufacturer restrictions. For example, Samsung, Xiaomi i Huawei often block built-in tools or require activation through Developer settings. But even on such devices there are workarounds. We tested all methods on different versions of Android (from Android 9 Pie to Android 14) and collected only those that work stably.

Important: if you need to record sound from the microphone or internal audio stream, some methods will not work - this will still require specialized utilities. But for basic screen recording (for example, for creating guides, demonstrating bugs or streaming), the built-in tools are enough.

1. Built-in screen recording in Android 11 and later

Starting with Android 11Google has added a native screen recording tool, but many manufacturers hide it deep in the settings or completely disable it. To find it:

  1. Open Quick settings panel (swipe down from the top edge of the screen).
  2. Click on the icon "Pencil" (edit panels).
  3. Find in the list "Screen recording"** (may be called Screen Recorder or Screen recording).
  4. Drag it to the active area and save the changes.

If the button is not in the list, try:

  • ๐Ÿ” Go to Settings โ†’ Accessibility โ†’ Utilities โ†’ Recording screen (for Samsung).
  • ๐Ÿ”ง Activate Developer mode (click on Number assembly v Settings โ†’ About phone7 times and look for the option there.
  • ๐Ÿ“ฑ On devices Xiaomi or Redmi, screen recording can be in Settings โ†’ Advanced โ†’ Recording screen.
โš ๏ธ Attention: On some firmware (for example, MIUI 13 or One UI 5.1), the built-in recording may limit the resolution to 720p or turn off the sound. Check the recording settings before starting.
๐Ÿ“Š Which version. Does your smartphone have Android?
Android 10 or older
Android 11-12
Android 13
Android 14
I donโ€™t know

2. Screen recording via ADB (without root)

If there is no built-in function or you are not satisfied with its capabilities, you can use Android Debug Bridge (ADB) a tool for debugging, which allows you to control the device from a computer. This method works on Android 7.0+ and does not require superuser rights.

You will need:

  • ๐Ÿ’ป A computer with Windows, macOS or Linux.
  • ๐Ÿ”Œ Cable USB-Type C (better original).
  • ๐Ÿ“ฆ Installed drivers ADB (you can download from the official website Android Developers).

Steps for recording:

  1. Turn on USB debugging in Developer settings.
  2. Connect the phone to the PC and confirm trust in the computer.
  3. Open the command line (cmd on Windows or Terminal on macOS/Linux) and enter:
adb shell screenrecord /sdcard/record.mp4 --bit-rate 8000000 --time-limit 180

Where:

  • --bit-rate 8000000 โ€” bitrate (the higher, the better the quality, but the greater the weight of the file).
  • --time-limit 180 โ€” time limit in seconds (maximum 180, otherwise recording will be interrupted).

To stop recording, click Ctrl+C in the terminal. The video will be saved in the root folder of the device under the name record.mp4.

USB debugging is enabled|

ADB drivers are installed|

The phone is connected to the PC in file transfer mode|

The command line is opened as administrator-->

โš ๏ธ Attention: On some devices (for example, Huawei c EMUI) screenrecord may not work due to manufacturer limitations. In this case, try the method with scrcpy (described below).

3. Using scrcpy to record from a PC

Scrcpy is an open source software for controlling an Android device from a computer, which also supports high-resolution screen recording.

  • ๐ŸŽฅ Sign up for Full HD (1080p) and higher.
  • ๐Ÿ”Š Possibility of capturing sound from the PC microphone (but not the internal audio of the phone!).
  • ๐Ÿ–ฑ๏ธ Controlling the phone from the keyboard and mouse.

Instructions:

  1. Download scrcpy from the official GitHub (available for Windows, macOS, Linux).
  2. Unpack the archive and run scrcpy.exe (Windows) or run the command ./scrcpy (macOS/Linux).
  3. To record, add a flag --record:
scrcpy --record=file.mp4 --bit-rate=10M

Additional options:

  • --max-size=1280 โ€” limit the video width.
  • --no-audio โ€” turn off the sound (if not needed).
  • --crop=1224:2560:0:120 โ€” crop the recording (format: width:height:offset_X:offset_Y).

Scrcpy is the only way to record the screen in 4K on most Android devices without root, if the manufacturer does not block video transmission via ADB.

๐Ÿ’ก

If the video is recorded with artifacts, reduce the bitrate to 5M or try another USB cable. Often the problem is an unstable connection.

4. Hidden recording function on Samsung devices

Smartphones Samsung based on One UI have a hidden tool entry that is not displayed in quick settings. To activate it:

  1. Open the application "Phone"** and dial the code:
    #0#
  2. In the sensor testing menu that appears, select Sensor Test โ†’ Screen Test.
  3. Press and hold Volume up button + power button for 3 seconds.
  4. A notification will appear that recording has started. To stop, use the button combination again.

The video will be saved in the folder. Pictures/Screenshots. Limitations of the method:

  • โŒ No sound.
  • โŒ Fixed resolution (1280ร—720).
  • โŒ Does not work on all models (tested on Galaxy S21, S22, A52).
โš ๏ธ Attention: On new firmware One UI 5.1+ this method may not work. If nothing happens after entering the code, update the software or use ADB.

5. Screen recording via Google Assistant (limited)

Little known fact: Google Assistant on some devices it can record the screen by voice command. works on Pixel, Nokia and some devices with pure Android. Procedure:

  1. Activate Google Assistant by voice (โ€œOK, Googleโ€) or by holding the โ€œHomeโ€ button**.
  2. Say the command: "Record screen" or "Start screen recording".
  3. Confirm permission to record (a notification will appear).
  4. To stop, say: "Stop" or "Stop recording".

Limitations:

  • ๐Ÿ”‡ Only video is recorded (no audio is captured).
  • ๐Ÿ“ Maximum duration - 3 minutes.
  • ๐Ÿ“ฑ Doesn't work on all devices (on Samsung or Xiaomi usually it doesn't work).
Why doesn't Assistant record the screen on mine phone?

Manufacturers often disable this function in their shells (for example, MIUI or One UIIn addition, Google may limit the feature on devices with modified software (for example, after unlocking the bootloader).

6. Alternatives for rooted devices

If your Android has root access, additional options open up for screen recording without apps. For example, you can use commands screenrecord with advanced parameters or utilities like Termux.

Example command for recording with internal audio (requires Magisk and module Audio Record Patch):

su -c "screenrecord --audio-mic /sdcard/video.mp4"

Advantages root methods:

  • ๐ŸŽต Capture internal audio (sound from games, music).
  • ๐Ÿ“น Setting FPS (up to 60 frames/sec).
  • โš™๏ธ Ability to bypass manufacturer restrictions (for example, on Huawei).

Risks:

  • โš ๏ธ Loss of warranty (if the device is under warranty).
  • โš ๏ธ Possible malfunctions in the system.
  • โš ๏ธ Blocking of some banking applications (due to SafetyNet).
Method Requires root Max resolution Sound Complexity
Built-in recording (Android 11+) โŒ No 1080p โŒ No (usually) โญ
ADB (screenrecord) โŒ No 1080p โŒ No โญโญ
Scrcpy โŒ No 4K ๐ŸŽค PC microphone only โญโญ
Hidden function (Samsung) โŒ No 720p โŒ No โญ
Root + screenrecord โœ… Yes 4K โœ… Internal + microphone โญโญโญ
๐Ÿ’ก

If you need to record with internal sound or at maximum resolution, it is almost impossible to do without root. In other cases, ADB or scrcpy is enough.

FAQ: Frequently asked questions

Is it possible to record screen on Android 9 and below without apps?

On Android 9 Pie and older there is no built-in recording function, but you can use ADB or scrcpyon Android 8.0 Oreo i. below screenrecord works only with restrictions (for example, a maximum duration of 3 minutes).

Why does recording via ADB stop after 3 minutes?

This command limitation screenrecord is the default maximum recording time. To bypass it, you can:

  1. Start recording several times in a row.
  2. Use scrcpy (no time limit).
  3. On devices with root, increase the limit by modifying system files (not recommended for beginners).
How to record sound from a game or video on phone?

Without root, this is impossible - built-in tools and ADB do not capture the internal audio stream. Options:

  • Use an external microphone (record sound from speakers).
  • Install Magisk i module for capturing audio (for example, Audio Record Patch).
  • Use specialized applications (but they require installation).
Where are videos saved after recording via ADB?

By default, files are saved in the root folder of the device (/sdcard/) under the name record.mp4 (or the one you specified in the command). To transfer the video to your PC, use the command:

adb pull /sdcard/record.mp4 C:\Users\YourName\Videos\

Or simply connect your phone to the computer and copy the file manually.

Is it possible to record the screen on an Android tablet?

Yes, all the described methods work on tablets as well. (for example, Samsung Tab S8, Xiaomi Pad 5).The exception is the hidden recording function via code #0#, which may not work on some models.