I have an android project versioned with SVN. I have three eclipse projects inside my repository. Library project, free version project, paid version project. My current repository structure is:
repository/
branches/
tags/
trunk/
freeversion/
paidversion/
library/
Is there a better structure for this contents?
Thanks!
Are the two versions of the application going to be so different that they require their own views, intents, activities, etc or does the paid version simply add more functionality to the application?
Either way, I would probably share everything except for the views, which is usually all that’s going to make a difference to the user once they run the application.
Something like this:
Upvote for rage faces!