Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to remove apple Watch app from existing Xcode project?

I add a watch app target to my project. How can I undo this?

I remove Watch target and scheme already. But it's show alert message "install app failed" on my apple watch when i debug my ios app project.

like image 429
Sin Hasegawa Avatar asked May 26 '15 08:05

Sin Hasegawa


People also ask

How do I remove Apple Watch from Xcode?

In Xcode 6.3. 2, two steps are necessary: Remove the WatchKit extension from "Target Dependencies" Remove WatchKit extension from "Embed App Extensions"

How do I use Apple Watch app on Xcode?

Open your iOS app's project in Xcode. Choose File > New > Target. Select the watchOS tab. Select “Watch App for iOS App” and click Next.


1 Answers

In Xcode 6.3.2, two steps are necessary:

  • Remove the WatchKit extension from "Target Dependencies"
  • Remove WatchKit extension from "Embed App Extensions"

A detailed description is available here.

like image 164
vomako Avatar answered Nov 15 '22 20:11

vomako