You could try uninstalling via ADB with adb uninstall <packageName>
(see our ADB tag wiki for details on ADB). The package name is the part you find in the Play Store URL of the app, following the id=
parameter – for Avast that would be com.avast.android.mobilesecurity
, so the complete command should be
adb uninstall com.avast.android.mobilesecurity
As it turned out (see comments below), the instructions given by Avast included the required details, but one needs to take care not to miss a step. Summing up:
- open the app
- via the Hamburger menu (upper left corner) navigate to Settings › Uninstall App
- enter your pin, then toggle off "turn off device administrator first"
- now tap "uninstall app"
- on the following screen, tap the Uninstall button and confirm.
On the last screen mentioned, you could also try to first force-stop and clear its cache/data, as shown in this (older) video. Also see this video for more up-to-date visuals.
As for the so-called "Antivirus" apps, I'd keep them off my device and rather use "brain.apk
", for multiple reasons:
- they often do more harm than good, especially with the trackers included. Avira is the best example of this, tracking you without your consent as security specialist Mike Kuketz demonstrated in detail (German article) – and as you experienced yourself, removing that threat proves hard.
- the term "Antivirus" is misleading. There are no viruses on Android (there is malware, yes, but you have to actively install it while viruses replicate themselves). So the naming is scare tactics as people using Windows think they must use such things.
- Due to the architecture of Android, such scanners must have root privileges to be effective. As they do not, they cannot do half of what they promise: there's no heuristics, no live-activity-scanning. At best, they compare the package names (and maybe APK hashes) against some databases.
- There's a wrong sensing of security. People let their guards down because they think themselves protected, getting reckless as they think no harm can happen.
So with some common sense and carefulness, your protection level is much higher :)
adb uninstall <packageName>
(see our ADB tag wiki for details on ADB). The package name is the part you find in the Play Store URL of the app, following theid=
parameter. – Izzy Dec 04 '21 at 18:11