减小unity iOS版包大小方法

参考  这个StackOverFlow帖

和 官方手册关于优化iOS大小

https://docs.unity3d.com/550/Documentation/Manual/iphone-playerSizeOptimization.html


 1. Release build instead of debug build. 

2. Target Device: only iPhone(in Unity settings). 

3. Target Platform: armv7

If you have the Unity Pro iPhone Pro license you could change the stripping level to use micro mscorlib. Read Optimizing the Size of the Built iOS Player for more information.


因此Unity官方也介绍了几种降低包体大小的方法:
1.替换jpg,使用psd,减少重复资源
2.剔除不必要的资源
3.打包时查看log纪录,由此判断需要减少的文件类型
4.优化,压缩图片,减少图片大小
5.优化,压缩网格和动画,减少文件大小
6.剔除system.dll和system.xml.dll ,尽量不要依赖他们,或用其他组件来代替。

你可能感兴趣的:(减小unity iOS版包大小方法)