I just want to remove app data after uninstalling the android app I am using below code in manifest
<application android:name=".XX"
android:allowBackup="false"
android:fullBackupContent="false"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:theme="@style/xx"
tools:replace="android:allowBackup">
allowBackup and fullBackupContent both attributes are not working Correctly May be this is due to library that is using allow backup true in there manifest and I thought my app is overwrite that setting from that library is there any possible way to get out of this and clear my app data every time when i install app.