Xcode: How to have different Bundle Id for "Debug" and "Release"

Viewed 1402

I am using Schemes in Xcode.

I cannot specify different Bundle IDs for the "Debug" and "Release" schemes, while I can do for any other scheme that I create. I need to manually edit the Bundle Id in order to install 2 different apps on my iOS (the "Debug" one and the "Release" one).

They seem to be grouped in a common group of properties:

enter image description here

While this is not the case with the schemes:

enter image description here

enter image description here

Thanks!

1 Answers

I found the solution, I had to put a different Bundle ID for the "Release" and Debug" in Build Settings:

enter image description here

Related