For AB testing, I have two different versions of my Xcode project that i want to load on the same device. Is there a way to load the two versions without having to create another project?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You want to have two different versions of the same app on your device.
So create a second target within your Xcode app (maybe duplicating the first one), and then all you need to do is have a second Info.plist file which has a different bundle ID. Everything else (i.e. the files that get compiled, the settings that are set for the target, etc.) will be the same.
The Bundle ID is what matters to your iDevice, so you can have multiple similarly named apps on it but they must have different bundle ID’s in each case.