Are Xamarin iOS apps bloated unreasonably?

前端 未结 2 1686
一向
一向 2020-12-28 09:31

I\'m developing a reasonably simple app using Xamarin iOS and the smallest size I\'ve gotten for the .app file is 13.5 MB.

I\'ve performed all the recommended optim

2条回答
  •  情书的邮戳
    2020-12-28 10:06

    The .dSYM is a directory that includes debugging symbols. This is not something you're shipping as part of your application (to your end users). Note that this is produced even in non-debugging builds since it allows you to symbolicate crash reports (that comes from end users running the release binary).

    For the real application size you need to look at the .app directory.

    You can learn quite a few tricks to reduce your application size (and build time) by watching this year Evolve video Advanced iOS Build mechanics. That will also answer the other questions you had.

提交回复
热议问题