Yes, the property name is usually obvious, but it's not working as expected.
<manifest ... >
...
<application android:allowBackup="true" ... >
...
</application>
I made a dumb Android app with a SQLite database to test this functionality. Supposedly with this property activated (and that is activated by default in API 23+) I can recover the database SQLite
once it is reinstalled on the Phone, since the database is hosted in the Google Drive of the user account of current google put.
Install and uninstall to test, but the results were not as expected. If I uninstall the app and reinstall it, the data is lost. If that same application is only reinstalled, the data remains.
How then can I make this property work? (by uninstalling it and reinstalling it can I recover the internal database of the application?)