banner
0xMech

0xMech

Focus on various AI application sharing, Blockchain learners, web3 new leeks
twitter

Use adb tool to disable ColorOS splash screen ads.

Intro#


Green Factory is really good at not doing personnel matters. Not long ago, they announced the dissolution of the domestic chip team, and now they are taking further steps in the core technology of domestic factories. In addition to the disgusting system advertisements, even third-party apps cannot escape the forced insertion of built-in advertisements by ColorOS. Douyin and Bilibili's pop-up advertisements can be considered as built-in applications. Even Telegram and Clash are not spared. It belongs to the core technology of domestic technology companies.

clash

Below, I will teach you how to use the adb tool to disable this disgusting feature.

Introduction to adb#

adb stands for Android Debug Bridge, which is simply understood as a debugging tool for Android developers. I don't know the specific concept and usage because I am not an Android developer.

You can click on this link adb to download this tool, and then extract it normally.

Download adb

adb configuration#

After extracting, copy the folder path - right-click on My Computer - Properties - Advanced System Settings - Environment Variables - find path in System Variables - Edit - New, then paste this path into it, and finally click OK to exit.

1

2

3

Disable system forced pop-ups#

Connect the Green Factory phone to the computer, open the developer mode (About phone - Version information - click the version number five times), then return to the settings and enter the developer options, and enable USB debugging.

adb

Open the command window by typing cmd in the command prompt, and enter the following code to check if adb is successfully connected to the phone:

adb devices

If the device list is displayed, it means the connection is successful. Finally, enter the following two lines of code separately:

adb shell pm uninstall --user 0 com.android.adservices.api
adb shell pm uninstall --user 0 com.opos.ads

success

After entering, the forced insertion of Green Factory's annoying splash screen advertisements has been successfully disabled.

Loading...
Ownership of this post data is guaranteed by blockchain and smart contracts to the creator alone.