Details
-
Suggestion
-
Resolution: Done
-
Not Evaluated
-
Qt Creator 3.2.1
-
None
Description
Currently whenever an Android app is redeployed to a device, database entries are deleted. On any other platform, when a Qt app is redeployed, database entries are not wiped out.
In cases where I strongly needed to redeploy an Android app without wiping out stored sqlite app data I have used:
adb -d install -r <path_to_apk>
or
adb -s <device> install -r <path_to_apk>
It would be great if Qt Android apps were redeployed from Qt Creator without wiping out stored data.