I have a Xamarin PCL solution in Visual Studio Community 2015.
I'm interested in deploying the same application for Android and iOS for two different customers. The only thing that it will change would be the splash image and the application icon.
I have thought in having different branches in my git repository, each branch for one customer. But I think that it isn't a suitable solution.
Also, I have thought to have different configuration solutions, for example, in iOS:
Configuration: [Ad-Hoc customer 1] - Platform: iPhone
Configuration: [Ad-Hoc customer 2] - Platform: iPhone
And then change the params on the project properties for each configuration. But if I change the params for specific configuration, switch to an other configuration, and then I come back the first configuration the params, there are the params of the second configuration.
If I'm not wrong, I have to specify different package names for each build, in other case, Google Play and Apple Store won't accept my apps.
In Xcode the concept is target/targeting.
What's the correct form to achieve my objective in Visual Studio 2015?