Question

I just had my app crash and now after alot of work its back to were I had it, I was wondering how would I back up the app so I can reInstall is again if this ever happens again?

Était-ce utile?

La solution

u should use a version control system, example: git version control

http://git-scm.com/

happy coding!

Autres conseils

use a version control system.. like svn or git ... in any case even if you were not using this, you should have taken backup of your code regularly... these version control system manages this for you easily...

This question is not specific to Java or Android, but rather, how to "backup" code properly. As others have already mentioned, you should be using source control systems such as Git or Subversion. Not only will this "backup" your code, it will allow you to track the changes you make to the code as well as maintain multiple versions of your code.

Licencié sous: CC-BY-SA avec attribution
Non affilié à StackOverflow
scroll top