The size of my Xamarin.iOS app is >100 mb and I'm trying to reduce it. I have included the Facebook SDK which takes up 70MB on its own. The only part of the SDK that I need is the login functionality.
I have set my Linker to Link SDK assemblies only
and have some questions in this regard. Does the linker automatically remove all the unused functions in the Facebook SDK?
Or is it better to go through the source code of Facebook SDK and remove all unnecessary functions like app events and other unnecessary functions and just use the one that is needed for my app?