App database does not delete

0

I have a problem.

I created an app and it uses sqlite local bank, the problem is the following, even I cleaning the data and uninstalling the app, when I install it again, it retrieves the old data that was in the database.

Someone can help me, I've tried everything to try and find some place that could save this bank and I can not find it.

    
asked by anonymous 10.10.2017 / 17:00

1 answer

1

Modify AndroidManifest.xml, within the application tag:

 android:allowBackup="false"

Basically by leaving allowBackup as "true", which is the default, some data is automatically backed up to your google drive account.

For more information: link

    
10.10.2017 / 21:14