Skip to content

Instantly share code, notes, and snippets.

@agnostic-apollo
agnostic-apollo / Android-Phantom,Cached-And-Empty-Processes.md
Last active April 17, 2024 23:05
Android Phantom, Cached And Empty Processes
@agnostic-apollo
agnostic-apollo / hasFragileUserData.md
Last active April 11, 2024 07:30
Android hasFragileUserData AndroidManifest.xml flag

The hasFragileUserData flag can be added to the application node of AndroidManifest.xml. If its value is true, then when the user uninstalls the app, a prompt will be shown to the user asking him whether to keep the app's data.

<application
	...
    android:hasFragileUserData="true" tools:targetApi="q">
...
</application>