0

I have a universal iOS app which runs on all iOS 9 capable iPhone and iPads. The app also has a Watch extension. When I come to submit the first version to the App Store, which target do I build, archive and submit? Do I have to archive the Watch extension target, or will the Watch extension be included if I build, archive and submit the iOS app target? Or does it not matter?

mashers
  • 1,009
  • 7
  • 22
  • 2
    The iOS app target. Extension and watch app would be bundled within the original package, automatically. – Vin Apr 21 '16 at 10:45

2 Answers2

2

Apple documentation states the following:

Adding a Watch app target to your Xcode project creates two new executables and updates your project’s build dependencies.

Furthermore, regarding building of the app:

Building your iOS app builds all three executables (the iOS app, Watch app, and WatchKit extension) and packages them together inside the iOS app’s bundle.

(emphasis mine)

Vin
  • 10,517
  • 10
  • 58
  • 71
0

The iOS app target. Extension and watch app would be bundled within the original package, automatically.

aBilal17
  • 2,974
  • 2
  • 17
  • 23