I need it.
I developed an application and I want to duplicate it. I can copy and paste the project, but if I do it 10 times, a problem may arise. The problem is that if I find an error in the 10th duplicate, I have to consider all other projects, and I do not want to do this.
Is there a clean way to solve this problem?
In other words, I only have one big code. The differences between the applications I have to deploy are:
- Launch icon
- HTTP request domain
- Package name
- Screensaver
- app name
- Some integers inside the application
- Some assets
On Android, I do this with gradle, in particular with aromas. How can I do the same with Swift?