Inscription "AD" in the corner of the screen, pop-up banners when unlocking or advertising notifications from unknown applications - every third Android user faces these problems. In 2026, aggressive advertising has become even more sophisticated: it disguises itself as system alerts, is built into the quick settings menu, and even appears on the lock screen. Moreover, the reason for this is not always viruses - often advertising is shown by legitimate applications (including those pre-installed by the manufacturer) or itself Android after updates.
In this article we will look at all possible sources of AD advertising on Android smartphones and show how to get rid of it get rid of: from basic settings to advanced methods using ADB and alternative firmware. It is important to understand that there is no universal solution - it all depends on the phone model, OS version and type of advertising. For example, on Xiaomi and Redmi services msa and Mi Pushare often to blame, and on Samsung built-in applications like Samsung Free or Bixby. We will consider each case separately.
We warn you in advance: some methods require disabling system applications or use ADB - this can lead to unstable operation of the phone. If you are not sure of your actions, it is better to contact a specialist. Also remember that after resetting the settings or updating the OS, advertising may return - so we will give recommendations on how to prevent it from appearing again.
1. How to determine the source of AD advertising on Android
Before removing ads, you need to understand which application or service shows it. In 80% of cases, the fault is:
- ๐ฑ Pre-installed applications manufacturer (for example, Mi Browser, Samsung Internet, Huawei AppGallery).
- ๐ Push notification services (
Mi Push Service,Huawei Push Kit,OPPO Push). - ๐ฆ Hidden advertising applicationsinstalled along with pirated content or โfreeโ utilities.
- ๐ System services (for example,
Android System WebVieworGoogle Play Servicesin older versions). - ๐ฎ Games and applications with aggressive monetization (for example, AliExpress, Likee, ShareIt).
To figure out the culprit:
- When advertising appears, quickly pull down the notification bar - sometimes the name of the application is displayed there.
- Go to
Settings โ Applications โ All applicationsand sort by date of last use. Advertising applications often appear at the top of the list. - Use task manager: click on the โrecent applicationsโ icon (square or swipe up) and see which application was active when the ad was displayed.
- Install App Inspector (available in Google Play) - it shows which application is currently displaying an overlay (pop-up window).
If advertising appears even without running applications (for example, on the lock screen), either system services or a virus are to blame. In this case, only deep cleaning or resetting the settings will help. Read about how to do this safely in the next section.
2. Basic methods for removing AD ads without root access
Let's start with the simplest methods that do not require special knowledge. They will help in 60โ70% of cases, especially if the advertisement appeared after installing a new application.
2.1. Disabling advertising notifications
Many applications show advertisements through push notifications. To turn them off:
- Go to
Settings โ Notifications โ History notifications(on some phones this item may be calledLatest notificationsorNotification log). - Find applications in the list that send advertising (for example, AliExpress, Likee, UC Browser).
- Click on the application โ
Disable notifications. - For reliability, also go to
Settings โ Applications โ [application name] โ Notificationsand disable all permissions.
2.2 Limiting the background for suspicious applications
Some apps show ads even when you're not using them. To stop this:
- Open
Settings โ Applications โ All applications. - Select a suspicious application (for example, Clean Master, ES File Explorer, Cheetah Mobile).
- Click
Battery(orBattery Usage). - Select
Limit Background ActivityorOptimize. - Also disable autorun:
Settings โ Applications โ [application] โ Autorun.
Delete unused applications|Disable notifications from suspicious applications|Limit background activity|Check autorun|Clear cache and data-->
2.3. Resetting the advertising ID
Advertising ID is a unique identifier that is used for targeted advertising. Resetting it can reduce the number of impressions:
- Go to
Settings โ Google โ Advertising(on some phones the path may be different:Settings โ Accounts โ Google โ Google account management โ Data and personalization โ Advertising settings). - Click
Reset advertising ID. - Disable the option
Personalized advertising(if there is one).
This method will not remove ads completely, but it will make it less intrusive. To completely remove it, you will have to use more radical methods.
If after resetting the advertising ID, advertising continues to appear, try disabling Google Play Services for 10-15 minutes (in the application settings Sometimes this resets the cache of advertising services.
3. applications
Many manufacturers (especially Xiaomi, Realme, OPPO, Huawei) install on phones own applications with advertisingthat cannot be removed using standard means. However, you can disable or remove via ADB.
3.1. List of the most annoying system applications
| Manufacturer | Name of application/service | What it does | Can I remove |
|---|---|---|---|
| Xiaomi/Redmi/POCO | com.miui.systemAdSolution |
System advertising service in MIUI | Yes (via ADB) |
| Xiaomi | Mi Browser, Mi Video, Mi Music | Show banners and push notifications | Yes (disable) |
| Samsung | Samsung Free, Bixby, Samsung Pay | Advertising on the main screen and in the menu | Partially (disable) |
| Huawei/Honor | com.huawei.android.hsf (Huawei System Framework) |
Push notifications and advertising in services | No (limitation only) |
| Realme/OPPO | Theme Store, App Market, Game Space | Pop-up advertising and notifications | Yes (via ADB) |
3.2. How to disable system applications without root
If an application cannot be deleted, you can disable it:
- Go to
Settings โ Applications โ All applications. - Find the application you need (for example, Mi Browser).
- Click
Disable(if the button is inactive, then the application is protected). - Confirm the action. The application will disappear from the menu and stop working.
If button Disable is not available, you will have to use ADB. Instructions below.
What happens if you disable a system application?
Disable system applications (for example, Mi Push Service or Samsung Free) usually does not break the phone, but can lead to:
- Disappearance of widgets (for example, weather or calendar).
- Errors in the operation of branded services (for example, Mi Account or Samsung Knox).
- Loss of functionality (for example, gestures or themes).
If problems occur after disabling, return the application to Settings โ Applications โ Disabled and click Enable.
3.3. Uninstall via ADB (without root access)
ADB (Android Debug Bridge) is a tool for debugging Android that allows you to remove system applications without obtaining root access. Attention: incorrect use can lead to unstable operation of the phone!
Instructions:
- Download Platform Tools from the official website Google and unzip to a folder on your computer.
- Enable USB debugging on your phone:
Settings โ About phone โ Build number(press 7 times until the message โYou have become a developerโ appears). Then go back toSettings โ System โ For developers โ USB debugging. - Connect the phone to the computer via USB and select the mode
File transfer. - Open the command line (Windows) or terminal (macOS/Linux) in the folder with
Platform Tools. - Enter command:
adb devicesIf the phone is detected, continue. If not, install the drivers.
- To uninstall the application, enter:
adb shell pm uninstall --user 0 package nameFor example, to uninstall Mi Browser:
adb shell pm uninstall --user 0 com.android.browser
List of packages for popular applications:
- ๐ฑ Mi Browser:
com.android.browserorcom.miui.browser - ๐ฑ Mi Video:
com.miui.videoplayer - ๐ฑ Mi Music:
com.miui.player - ๐ฑ Samsung Free:
com.samsung.android.app.spage - ๐ฑ Huawei AppGallery:
com.huawei.appmarket
Removal via ADB does not require root access, but only applies to the current user. After a factory reset or OS update, applications may return.
4. Fighting advertising on a locked screen
Advertising on lock screen is one of the most annoying. It appears when the phone is locked and is often disguised as system notifications. Sources:
- ๐ Pre-installed applications (for example, Mi Wallpaper or Theme Store).
- ๐ Services push notifications from the manufacturer.
- ๐ Viruses or adwareinstalled from unverified sources.
4.1. Disabling advertising on the lock screen in MIUI
On smartphones Xiaomi, Redmi and POCO:
- Go to
Settings โ Lock screen. - Tap
Advanced settings(orAdvanced settings). - Disable the options:
- ๐ข
Recommendations on the lock screen - ๐ข
Mi Wallpaper Carousel(wallpaper carousel) - ๐ข
Show notifications on screen locks(or setHide content)
- ๐ข
Mi Push Service in application settings.4.2. Removing ads on the lock screen in Samsung
On phones Samsung:
- Go to
Settings โ Lock screen โ Notifications. - Disable
Show notification contentor selectDo not show notifications. - Disable Samsung Free:
- Tap and hold an empty space on the home screen โ
Home screen settings. - Disable
Samsung FreeorBixby.
- Tap and hold an empty space on the home screen โ
4.3. If advertising appears even after disabling all settings
In this case, it is to blame adware. Proceed as follows:
- Install Malwarebytes or Kaspersky Mobile and scan the phone.
- Check the list of installed applications for suspicious ones (for example, Fast Cleaner, Super Battery, Lucky Patcher).
- If all else fails, do reset settings (see section 6).
On some phones (for example Huawei), advertising on the lock screen may be part of the firmware. In this case, only replacing the firmware with a new one will help. custom (for example, LineageOS).
5. How to remove AD advertising in games and applications
Many free games and utilities (for example, Subway Surfers, Candy Crush, ES File Explorer) show advertising inside the interface. You can get rid of it in several ways:
5.1. Buying a premium version
The most reliable way is buy the version without excess waterFor example:
- ๐ฎ In Subway Surfers you can buy
Starter Packfor ~300 rubles, which disables advertising. - ๐ In ES File Explorer there is a paid version ES File Explorer Pro without excess water.
- ๐ต B Spotify removes advertising Premium subscription.
5.2 Using modified APKs (at your own risk)
There are modified versions of applications (for example, Lucky Patcher, RevDL) that block ads. However:
- โ ๏ธ This violates the rules Google Play and can lead to account blocking.
- โ ๏ธ Such APKs often contain viruses or spyware.
- โ ๏ธ Applications can stop working after updates.
If you still decide, use only trusted sources (for example, APKMirror or Mobilism) and be sure to scan the files with an antivirus.
5.3. Ad blocking via DNS or VPN
Some services (for example, AdGuard DNS, Blokada, 1.1.1.1) block advertising domains at the network level. How to set up:
Method 1: AdGuard DNS
- Go to
Settings โ Connections โ Other networks โ Private DNS. - Select
Private DNS provider hostname. - Enter
dns.adguard.comand save.
Method 2: Blokada (without root)
- Download Blokada from Google Play.
- Launch the application and enable blocking.
- Select a blocking list (for example,
EasyList + EasyPrivacy).
Method 3: VPN with ad blocking
Some VPNs (for example, ProtonVPN, Windscribe) have built-in ad blocking. After connecting to a VPN, advertising in applications and the browser will be blocked automatically.
Blocking via DNS or VPN does not work with all types of advertising. For example, it will not help against banners in games that are loaded from local files.
6. flashing
If none of the above helped, there are radical methods:
- ๐ Reset to factory settings - deletes all user data and applications.
- ๐ฑ Installing custom firmware (for example, LineageOS, Pixel Experience) - completely replaces the system software.
- ๐ ๏ธ Obtaining root access and manually removing system applications.
6.1. How to properly reset
Before resetting be sure to make a backup copy important data (photos, contacts, messages). Then:
- Go to
Settings โ System โ Reset settings. - Select
Delete all data (reset to factory). - Confirm the action. The phone will reboot and return to its original state.
After the reset:
- ๐ซ Do not restore data from the backup Google โit may contain adware.
- ๐ Install applications only from Google Play (avoid APKs from unknown sources).
- โ๏ธ Immediately disable unnecessary system applications (see section 3).
6.2. Installing custom firmware (for advanced users)
Custom firmware (for example, LineageOS, Pixel Experience, HavocOS) do not contain pre-installed adware. However, their installation requires:
- ๐ Unlocking the bootloader (bootloader).
- ๐ฑ Installing custom recovery (TWRP).
- ๐ ๏ธ Skills in working with
fastbootiADB.
Instructions for LineageOS:
- Download the firmware for your model on the official website LineageOS.
- Unlock the bootloader (instructions are on the forum XDA Developers for each model).
- Install TWRP Recovery.
- Via TWRP execute
Wipe โ Advanced Wipe(checkDalvik, Cache, System, Data). - Install the downloaded firmware and GApps (if services are needed Google).
What will happen if you install custom firmware incorrectly?
Incorrect installation of the firmware can lead to:
- Brick (the phone does not turn on).
- Loss of IMEI (does not work cellular communication).
- Problems with the camera, sensors or charging.
If you are not sure of your actions, it is better to contact a specialist or use safer methods (for example, resetting settings).
6.3. Obtaining root access and manually removing ads
root access gives full control over the system, but voids the warranty and may compromise security. If you still decide to get them:
- Unlock the bootloader.
- Install Magisk (the most popular tool for getting root).
- Using Root Explorer or Titanium Backup uninstall system applications responsible for advertising.
List of applications to remove (after getting root):
- ๐ฑ
com.miui.systemAdSolution(advertising in MIUI) - ๐ฑ
com.android.browser(standard browser with advertising) - ๐ฑ
com.samsung.android.app.spage(Samsung Free) - ๐ฑ
com.huawei.android.hsf(push notifications Huawei)
After receiving root access, install AdAway - this application blocks advertising at the system level by editing the file hosts.
7. How to prevent advertising from appearing in the future
To prevent advertising not returned after cleaning, follow these rules:
7.1. Android security settings
- ๐ Disable installation of applications from unknown sources:
Settings โ Security โ Unknown sources. - ๐ก๏ธ Install a reliable antivirus (for example, Kaspersky, Bitdefender, Malwarebytes).
- ๐ Regularly check the list of installed applications for suspicious ones.
7.2. Alternative app stores
Avoid installing APKs from unverified sources. If Google Play is not available, use:
- ๐ฑ APKMirror โa verified source of APK files.
- ๐ฑ Aurora Store โan open client for Google Play without unnecessary fuss.
- ๐ฑ F-Droid โopen software store (applications without unnecessary water).
7.3. Setting up a Google Account
To reduce the amount of targeted advertising:
- Go to My Google account โ
Data and personalization. - In the section
Advertising settingsdisablePersonalized advertising. - Delete search history and activity in the section
My activity.
7.4. Regular cleaning of the phone
Use the built-in cleaning tools:
- ๐งน On Xiaomi:
Security โ Cleaning. - ๐งน On Samsung:
Device maintenance โ Cleaning. - ๐งน On Google Pixel:
Settings โ Memory โ Free up space.
Even after complete cleaning, advertising may return after updating the OS. Check your settings regularly and disable unnecessary system applications.
FAQ: Frequently asked questions about AD advertising on Android
โ Why did the advertising return after resetting the settings?
Advertising returns because:
- The manufacturer installs its applications again when first connection to the Internet.
- You have restored data from backup