When I uninstall my app, I want the Android> data > (package name) folder to also be deleted.
I added the following code to my manifest:
<application
android:allowBackup="false"
android:fullBackupContent="false"
android:fullBackupOnly="false"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:largeHeap="true"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:hardwareAccelerated="true"
android:theme="@style/AppTheme.Launcher">
But the folder is still left behind. I checked the device's Backup and Restore settings, but it is turned off.
What am I missing?