manubrio
manubrio

Reputation: 469

AppCode, no iOS simulator showing up

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

Upvotes: -1

Views: 264

Answers (2)

manubrio
manubrio

Reputation: 469

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

Upvotes: 1

Jon Reid
Jon Reid

Reputation: 20980

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.

Upvotes: 1

Related Questions