Find size contributed by each external library on iOS

前端 未结 4 1547
滥情空心
滥情空心 2020-12-08 22:02

I\'m trying to reduce my app store binary size and we have lots of external libs that might be contributing to the size of the final ipa. Is there any way to find out how mu

4条回答
  •  轻奢々
    轻奢々 (楼主)
    2020-12-08 22:24

    Make a .ipa file of your app and save it in your system.

    Then open the terminal and execute the following command:

    unzip -lv /path/to/your/app.ipa

    It will return a table of data about your .ipa file. The size column has the compressed size of each file within your .ipa file.

提交回复
热议问题