Owners of the popular Xiaomi Redmi Note 7 smartphone often face a lack of internal memory, especially if the basic version of the device is 32 or 64 GB. After installing the MIUI operating system and the necessary applications, free space remains critically small. This leads to the inability to update programs, take new photos or download files from messengers, which causes serious discomfort when using the gadget.
Fortunately, the Redmi Note 7 model is equipped with a hybrid slot that allows you to use a microSD memory card up to 256 GB. Standard system tools can transfer media files, but installing applications on an external drive requires understanding the specifics of Android. In this article, we will discuss proven methods of expanding the functionality of the device that will help free precious megabytes of internal memory.
Before you start to act, you need to prepare the drive itself. Buy a high-quality memory card from a reputable manufacturer, because cheap analogues can run slowly or fail in a couple of months. The speed of reading and writing directly affects the speed of programs that will be placed on an external medium.
Preparation of memory card and system setting
The first step after buying a MicroSD is to install it correctly and format it.Put the card into the smartphone slot, matching contacts with guides, until a characteristic click.The MIUI system will automatically detect the new device and prompt you to configure it.It is important to choose the use mode as Portable Storage if you plan to transfer data to other devices often, or Internal Storage to integrate the flash drive into the system.
When you select the Internal Storage option, you completely format the drive. All the data that was on the map will be permanently deleted, so copy important files to your computer beforehand. Once you complete the procedure, the system will reconfigure the file system to make it compatible with Android requirements for installing programs.
- π± Make sure your phone is at least 50% charged before formatting.
- πΎ Use speed class cards UHS-I or higher for stable application performance.
- π Do not remove the memory card while the smartphone is running to avoid damaging the file system.
It's worth noting that formatting a card for internal storage will tie it to a particular device, and you can't read data from a flash drive on a computer without formatting it again, and it's an Android security measure that protects user data from unauthorized access.
β οΈ Warning: Once the card is formatted as an internal storage, it is encrypted. If you lose your smartphone or it fails, it will be impossible to recover the data on the map without the device itself.
Standard method of transfer through MIUI settings
The MIUI shell on the Redmi Note 7 has a basic memory management feature that allows you to move some applications to an external medium, unless the developer has banned this action, and you need to go to the settings menu, select the App item, and then All Apps.
Find the program you want to move in the list. Click on it to open the details. If the feature is available, you will see an active button Move to SD-Clicking on it will start the file migration process, and the time of operation depends on the size of the application and the speed of your memory card.
However, many modern apps, such as WhatsApp, Telegram or banking customers, do not have this button, which is due to Googleβs security policy and the peculiarities of the services that must download immediately after the phone is turned on, before mounting external drives.
- π Move only heavy games and programs that do not require constant background work.
- π« Do not try to carry system components, this can lead to instability. MIUI.
- βοΈ After the transfer, the app shortcut remains on the desktop, but the files will physically be on the flash drive.
βοΈ Pre-transfer check
If the move button is missing or inactive, the standard system will not solve the problem, which will require more advanced tools such as ADB debugging mode or superuser rights.
Using ADB debugging mode for forced transfer
A more effective way to do this, without root rights, is to use the command line ADB (Android Debug Bridge), which allows you to force the storage settings for a particular application, and you'll need a computer and installed drivers for Xiaomi, as well as the ADB utility itself.
On your smartphone, you need to activate the developer mode. To do this, seven times click on the build number in the About Phone section. Then, in the Developer menu that appears, turn on the USB Debugging option. Connect the phone to your computer with a cable and confirm the debugging permission on the device screen.
adb shell pm set-install-location 2Run this command in the computer console, switch all new applications to an external map, and for programs already installed, you can use the command:
adb shell pm move-package com.example.app internalWhere you substitute an application ID for com.example.app, which gives you more control, but requires careful input, and a syntax error can cause the command to fail.
β οΈ Attention: Use ADB-commands can cause some applications to run unstable if they are not optimized to run from an external drive.Be prepared to roll back changes.