I have a Xamarin forms application and I have requirement to change the iOS splash page image (.png) configured in the LauchScreen.storyboard file based on a build compilation symbol. (ie, If the build configuration symbol "TEST-ENVIRONMENT" is defined, then display image-1.png on the splash page otherwise use image-2.png). I thought maybe I could swap images by specifying a command to copy the appropriate image file in the Pre-build event but since they are Embedded Resources, I don't see how it could be done. I'm at a loss as to how I can do this.
Thanks!