Drop-down list does not appear in Xcode 4 when binder code

I made a project in Xcode 4.2, but I couldn’t select the required certificate in the code sign identification column. Xcode does not even show a single drop-down list in this column after adding certificates in the organizer, only a text field appears.

+6
source share
3 answers

I previously struggled with this problem until I found out that all you have to do is switch "Show Values" in the "Editor" menu. This led to a drop down menu for me.

+24
source

Please ensure that your package ID matches the application ID that was used to create the provisioning profile. You can edit the package identifier in info.plist .

0
source

I see the same problem since I started coding. I found out that if I write myself the names of the certificates that I installed, it works just as well. I was able to send adhoc distributions as well as to the store. it must be the same name.

0
source

Source: https://habr.com/ru/post/902564/


All Articles