I want to import LinPhone library for receiving VoIP calls in my app.
This is my Pod-file:
platform :ios, '13.0'
source "https://gitlab.linphone.org/BC/public/podspec.git"
target 'ClientApp' do
use_frameworks!
pod 'ReachabilitySwift'
pod 'Firebase/Analytics'
pod 'Firebase/Messaging'
pod 'SVGKit', :git => 'https://github.com/SVGKit/SVGKit.git', :branch => '3.x'
pod 'linphone-sdk'
end
My app size before import LinPhone - 60 mb, after import - 240 mb. This is very unpleasant surprise.
When I opened the gitlab link with source in browser, I saw this:
How can I import only linphone-sdk-novideo to reduce application size?
P.S.: "pod 'linphone-sdk-novideo'" - dont work.