Ever since Nothing started experimenting with lockscreen ads (Glimpse) and shipping more preinstalled apps on the 3a series and other budget devices, the community has been… let’s say energetic about it.
If you don’t want Lock Glimpse, you have two choices:
Stay on Nothing OS 3
Update to Nothing OS 4 and manually remove the bloat
This guide is for option #2.
If you’ve ever used Xiaomi, Realme, or other Chinese smartphones and debloated them via ADB, this will feel very familiar.
We’ll be using ADB to uninstall unwanted apps for the current user without root.
Important Disclaimer (Read This First)
This method does not require root
You are uninstalling apps only for user 0 (your user), not system-wide
Removing the wrong package can break features or soft-brick your phone
Factory reset will restore all removed apps
Proceed only if you’re comfortable following commands carefully
Step 1: Enable Developer Options
Go to Settings → System → About phone
Tap Nothing OS / Build number repeatedly
You’ll see a popup: “You are now a developer”
Now enable USB debugging:
Go to Settings → System → Developer options
Turn on USB debugging
You’re halfway there.
Step 2: Install Android Platform Tools (ADB)
You’ll need Android Platform Tools on your PC.
Windows / macOS
Search for “Android Platform Tools”
Download from the official Android developer site
Extract the folder somewhere convenient
Linux
If you’re on Linux, this is easier.
Example for Arch Linux: sudo pacman -S android-tools
(Other distros may use apt, dnf, etc.)
Step 3: Connect Phone to PC
Connect your phone to the PC using a USB cable
Allow the USB debugging authorization prompt on your phone
Verify Connection
Windows
Open the platform-tools folder
Click the address bar, type cmd, press Enter
Run: adb devices
Linux
Open terminal
Run:adb devices
You should see something like:
List of devices attached
XXXXXXXX device
If no device shows up:
Make sure USB debugging is enabled
Try a different cable or USB port
On Windows, you may need USB drivers (contact Nothing support if needed)
Step 4: List Installed Packages
To see all installed apps (packages), run: adb shell pm list packages
This will dump a long list. Use your terminal’s find/search feature to locate specific apps.
Example: Finding Lock Glimpse
Searching for glimpse didn’t return anything for me.
Searching for lock revealed: package:com.vilykke.lockscreen
This corresponds to the Lock Glimpse feature.
Step 5: Verify Before Uninstalling (Very Important)
Before removing anything:
Go to Settings → Apps
Confirm the app actually exists and matches what you want to remove
Be extra careful with packages that don’t clearly match app names
Uninstalling core system packages can break your UI, network, or boot process.
Step 6: Uninstall the Bloatware
Once you’re sure, run: adb shell pm uninstall -k --user 0 com.vilykke.lockscreen
If successful, you’ll see: Success
That’s it. The app is gone for your user.
Repeat this command for:
Note
Factory reset will bring everything back
OTA updates usually don’t restore removed apps, but major updates might
Keep platform-tools installed so you can re-debloat if needed
This method keeps the “Nothing experience” actually nothing-like