skip to Main Content

I have been working on an Xcode 13.3.1 project, testing my code using a simulator. When I was ready to test the app on my device, I navigated to the project settings and noticed that the "Signing and Capabilities" tab was no longer displayed as shown below.

enter image description here

So, I created a new app and the "Signing and Capabilities" tab is present in that app, as shown below.

enter image description here

Any advice?

🥴

3

Answers


  1. Chosen as BEST ANSWER

    Here is the answer I was looking for. The answer is super-simple for experienced Xcoders, but for newbies, not so much.

    enter image description here


  2. You’re comparing apples and oranges.

    In the first screenshot you are editing the project. A project has no signing and capabilities.

    In the second screenshot you are editing the target.

    The editor interface is completely different because a project and a target are different things.

    Login or Signup to reply.
  3. The Signing and Capabilities tab was not available because you had the project selected in the Project Editor instead of an app target. Select an app target, and you will see the Signing and Capabilities tab.enter image description here

    In your comment you mentioned not being able to select the app target. For some reason the target list was hidden for you in the project editor. Click the button the arrow is pointing to in my screenshot to show the target list and select the app target.

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search