1

I'm planing to create new watch app that will play some audio files on watchOS 3. I'm gonna have to include at least 10 audio files (m4a), about 50MB inside the extension target. Is there any limitation on including resources in watch app extension target?

I couldn't find any documentation about this. Any suggestion? appreciated.

Thanks,

Jad
  • 2,139
  • 1
  • 16
  • 28
  • A watch app is bundled inside an iOS app. It's not a standalone app that is submitted or downloaded on its own. Look at the iOS guidelines. –  Aug 29 '16 at 19:12
  • Thanks. I know it's bundled but the files will be inside the extension target which of course will not be bundled! – Jad Aug 29 '16 at 19:14
  • The watchOS extension is bundled inside the watchOS app, which is bundled inside the iOS app. The watch extension adds to the size of the watch app, which then adds to the size of the iOS app. –  Aug 29 '16 at 19:42

1 Answers1

1

There is a size limit of 50MB.

You will receive something similar to this:

ERROR ITMS-90389: "Size Limit Exceeded. The size of watch application (55MB) has exceeded the 50MB size limit."

if you try to upload your app to Itunes Connect

user023
  • 1,450
  • 2
  • 17
  • 21