this post was submitted on 28 Jul 2024
463 points (99.6% liked)
196
16813 readers
899 users here now
Be sure to follow the rule before you head out.
Rule: You must post before you leave.
founded 2 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
Android can disable these alerts using ADB
adb start-server
adb shell pm disable com.android.cellbroadcastservice
Edit: AND
adb shell pm disable com.google.android.cellbroadcastreceiver
(This is the Wireless Emergency alert app specifically)Caveat:
CellBroadcast is a feature of the Android Open Source Project that allows devices to receive and display emergency alerts from cellular networks. Learn how to implement CellBroadcast in your device, how to configure the broadcast channels and languages, and how to test the functionality with the CellBroadcast app.
This is the app code that provides these alerts.
https://source.android.com/docs/core/ota/modular-system/cellbroadcast
I can just disable them in the settings...
Yep.