Collin
Collin

Reputation: 6760

Run iOS App with WatchKit Extension on iOS 7 device in Xcode6.2

My iOS app has a deployment target of 7.0 and my WatchKit App of 8.2.

Xcode won't allow me to run the iOS app on an iOS 7 device. It says my WatchKit App has a deployment target of 8.2 so it can't run on an iOS 7 device. If I change the deployment target of the WatchKit App then the project fails to build.

How can I run an app from Xcode with a WatchKit App on iOS 7?

enter image description here

Upvotes: 0

Views: 597

Answers (2)

dogsgod
dogsgod

Reputation: 6377

iOS 7 has no support for the Apple Watch.
Setting your deployment target to iOS 7 does allow to install the main app on that platform but that app does still only support the Watch on iOS 8 devices.

Chose an iOS 8.x simulator, and it should work. You also need to have the right set of Provisioning Profiles for debug (and release) configured - at least for me automatic stopped to work on Xcode 6.3.

Upvotes: 1

TWilly
TWilly

Reputation: 4933

It looks like you are trying to launch the "PhotoMind WatchKit App" target. Is this the watchkit app? Try switching the target to the iPhone app.

Upvotes: 0

Related Questions