I have finished writing an IOS app and I used Firebase Database, auth, instance, messaging and core modules.
when I archived the app for deployment the size of the IPA file was 110mbs.
I checked my project files. the main project file including all assets is around 4mb, but the pods file is 67mb in size. does that get compressed ? or how do I reduce its size ?
this is the content of my podfile:
pod 'Firebase'
pod 'Firebase/Core'
pod 'Firebase/Auth'
pod 'Firebase/Database'
pod 'Firebase/Storage'
pod 'Firebase/Messaging'
thanks