how to upgrade the prevoius apk with new apk without losing the previous data in android from unknown resources apk
问题 How to upgrade the android application with out losing previous apk data in real device with new apk ? 回答1: there is a versionCode element in AndroidManifest.xml. This is an integer and its value should be increased for each new version. So the higher the value of this integer, the more recent the version of your app is. So to update your app with apk, you should just increment this number by 1 and recompile your app and use the resulting apk to install your app as you normally would. The