this post was submitted on 21 May 2026
8 points (90.0% liked)
Android
1143 readers
18 users here now
Android news for android developers. Everything that happens in android world.
For Android development specific topics please see /c/android_dev
The Android robot is reproduced or modified from work created and shared by Google and used according to terms described in the Creative Commons 3.0 Attribution License
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
It's similar to on PC, where it depends on how files were stored by the app and how well they made their uninstall process.
Generally speaking, any data stored in the app specific storage (normally hidden from Android file browsers) will be cleared on uninstall, and any folders in the user-accessible area of storage will stay.
If you're concerned, you can run SD Maid 2 and turn on its uninstall watcher functionality so it can scan for any leftovers and clear them. That said, it's been pretty rare that I've ever seen it detect anything to remove after an uninstall.
It's very different from a Windows PC.
Windows uses an installer database to determine what files are needed and where (source, I did app packaging and deployment for NT4 through Windows 7).
Android: APKs are just zip files that extract to a specific folder - much, much simpler.
When an app is uninstalled the app folder is deleted, though the data folder may be left behind in case the user decides to reinstall the app.
This is the only part that isn't well-defined or well enforced, and why SD Maid is such a useful tool.