I have searched the internet for an answer but can't really find what I am looking for. Im looking to have a master code base that I can use across lots of apps. The only differences are the app Icon, a background image, app name and a url to a server for all the information. Currently I have a master copy of the app both on ios and android, and im just copying it (so creating a new project with the same code), then changing the little bits that need changing. So in doing this if I updated the master app with a new feature I then have to add the new bit of code to every project then update them. Is there a way I can just update the master code and it will update all of my projects apart from the url, name and images.
Edit - I have looked at that question (android-flavors-with-different-base-themes but im not taking about making 10 or so apps from one code base. We currently have 170+ apps and growing. Is it accpetable to have that many android flavours or xcode targets in one project and would it be easy to add new ones.
As elrain has said below creating a library that I can import into each project is proberly going to be the best solution for my situation as I can manage the library and it will then update in all my projects. Im was just wondering if anyone has encountered this problem before.
Thanks