How to remove local storage as app get uninstall

Found a workaround, check if it helps you,
Go to Platform/Android/AndroidMainfest.xml
Replace two tags with the following

<manifest android:hardwareAccelerated="true" android:versionCode="30740" android:versionName="3.0.740" package="com.locationguru.teampilot" xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools">

<application android:allowBackup="false" android:fullBackupContent="false" android:hardwareAccelerated="true" android:icon="@mipmap/icon" android:label="@string/app_name" android:supportsRtl="true" tools:replace="android:allowBackup">

As per reference from here.

7 Likes