skip to Main Content

I’ve downloaded AppCode for iOS development. For my personal project I’ve a bunch of simulator to chose from. But for a work project there is no simulator but only "Add Configuration" (image attached below)
Add Configuration from AppCode image

I’ve already tried a bunch of stuff like the ones mentioned here AppCode can't run on simulator and device and here AppCode found no simulators to run but none of them seems to work.

The project has unchecked "Automatically manage signing" duo to some work requirements. Does anyone know how to run AppCode and this particular project in a simulator? Why this project has no simulator while my personal project has the whole list?


Edit:

enter image description here

2

Answers


  1. Chosen as BEST ANSWER

    My mistake was that I imported the whole project in AppCode instead of opening the xcworkspace with AppCode!


  2. AppCode configurations are different from Xcode schemes. You’ll need to add a configuration, selecting a target to run. (If you select an app target, "Run" will run your app. If you select a test target, "Run" will run your tests.)

    Once you have a configuration with an iOS target, you’ll be able to select one of the simulators.

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