Approaching Size Limit - The size of watch application (50MB limit is headache.)

后端 未结 3 1089
天涯浪人
天涯浪人 2021-01-19 01:59

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

3条回答
  •  走了就别回头了
    2021-01-19 02:40

    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.

提交回复
热议问题