Skip to content

Commit 346513c

Browse files
committed
chore(android): Add hasFragileUserData to manifest
This commit adds `android:hasFragileUserData="true"` to the `AndroidManifest.xml`. This ensures that when a user uninstalls the app, the system prompts them to confirm if they want to also remove the app's data. The change also includes `tools:targetApi="29"` to support this attribute.
1 parent 8830799 commit 346513c

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

composeApp/src/androidMain/AndroidManifest.xml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,8 @@
1919
android:networkSecurityConfig="@xml/network_security_config"
2020
android:roundIcon="@mipmap/ic_launcher_round"
2121
android:supportsRtl="true"
22+
android:hasFragileUserData="true"
23+
tools:targetApi="29"
2224
android:theme="@android:style/Theme.Material.Light.NoActionBar"
2325
android:usesCleartextTraffic="false">
2426

0 commit comments

Comments
 (0)