Save android studio project

0

I am making an app and my biggest fear is losing the project (if my pc crashes for example) I want to know if I can save the project to Dropbox or Google Drive without damaging the app, or if there is another way I can save it security the project

    
asked by anonymous 08.12.2017 / 06:25

1 answer

0

One of the ways to save the app is to make a backup of the "src" folder of the project, there will be all your code classes, activity's, strings, manifest, etc. to restore the project create a blank project and replace the folder "src". I usually create a .zip and save to Google Drive or Dropbox, another way is to create a repository in github or bitbucket is usually more used, I also use it, having the possibilities of public or private repositories (this is paid in github) and versioning of your files.

    
08.12.2017 / 10:53