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

后端 未结 3 1086
天涯浪人
天涯浪人 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:28

    To answer your first question, yes on-demand resources is an available option for watchOS. See here and here

    Additionally, the first link above describes 'slicing' which allows you to specify resources to target devices, thus reducing your overall app footprint.

    To address your third question, go to the extension's project settings, and set Always Embed Swift Standard Libraries to 'No'.

    Also, remove the Newtonsoft.Json library from the watch extension project, if it exists

    0 讨论(0)
  • 2021-01-19 02:37

    Following things can help to reduce size:

    1) Try to use either swift or objective c

    2) Add assets in either in a watch or watch extensions, according to requirement.

    3) Enable bit code

    4) go to the extension's project settings, and set Always Embed Swift Standard Libraries to No.

    Update WatchOs4:

    We have investigated size increase in watchos4. Finally, we find out that dylibs consuming memory.

    libSwiftCode was 16.1mb in watchos3 now it's 23.1mb

    libSwiftFoundation was 6.2mb in watchos3 now it's 9.2mb

    Note:

    From watchOS4 size increased by 25MB, so now watch app size limit is 75MB instead of old 50MB

    0 讨论(0)
  • 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.

    0 讨论(0)
提交回复
热议问题