Our app reaches approx 49MB and we are not halfway. So definitely it will exceed the limit of 50MB. I have few questions as follow.
1) Is On-Demand Resources possibl
You can definitely save space by only including resources in either the watch app or the watch extension, not both. For resources used in your storyboard or referenced by name in WatchKit methods, like WKInterfaceImage
’s setImageNamed(_:)
method, you should store them in the watch app itself. For any resources loaded in code by path or with UIImage
methods like init?(named:)
, you’ll want to put them in your WatchKit Extension.