Andre Yonadam
Andre Yonadam

Reputation: 1024

What android folders should be backed up?

I've recently started to back up my whole project's folder in my workspace via Git. However, I've noticed that there are files that keep getting generated by Eclipse. I think that these files including their parent directories don't need to be backed up. What folders need to be backed up in an Android project?

Upvotes: 0

Views: 37

Answers (1)

FD_
FD_

Reputation: 12919

Only gen and bin are auto-generated, so anything else should be backed up.

As @CommonsWare pointed out, if you are using the new Gradle-based build system, build is also auto-generated, so needn't be backed up.

Upvotes: 2

Related Questions