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:
- Open
Quick settings panel(swipe down from the top edge of the screen). - Click on the icon "Pencil" (edit panels).
- Find in the list "Screen recording"** (may be called
Screen RecorderorScreen recording). - 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 onNumber assemblyvSettings โ 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.
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:
- Turn on
USB debugginginDeveloper settings. - Connect the phone to the PC and confirm trust in the computer.
- Open the command line (
cmdon Windows orTerminalon 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)screenrecordmay not work due to manufacturer limitations. In this case, try the method withscrcpy(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:
- Download scrcpy from the official GitHub (available for Windows, macOS, Linux).
- Unpack the archive and run
scrcpy.exe(Windows) or run the command./scrcpy(macOS/Linux). - 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:
- Open the application "Phone"** and dial the code:
#0# - In the sensor testing menu that appears, select
Sensor Test โ Screen Test. - Press and hold Volume up button + power button for 3 seconds.
- 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:
- Activate Google Assistant by voice (โOK, Googleโ) or by holding the โHomeโ button**.
- Say the command: "Record screen" or "Start screen recording".
- Confirm permission to record (a notification will appear).
- 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:
- Start recording several times in a row.
- Use scrcpy (no time limit).
- 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.