I developed a general application, because I need to create some very similar app. I tried to separate the differences, so I have a settings.xml. But it’s not enough because sometimes I need to change the code in a version, but I really want to have a same codebase for every app.
I want to reach my main goal, so if I develop the same codebase, then all app version is upgraded. But I have difficulties to handle the differences.
I need your suggestions, how should I handle this in git. Should I create a brach for every app version? How should I handle the different things (app name, icon, package name, settings.xml, maybe different code parts) and still be able to develop the same codebase and upgrade every app version.
Maybe a buildserver script can handle some file replace, but it can't handle the different code versions.
Is there someone with the same problem? Maybe a working solution?