1

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:

enter image description here

How can I import only linphone-sdk-novideo to reduce application size?

P.S.: "pod 'linphone-sdk-novideo'" - dont work.

alexbayker
  • 882
  • 9
  • 19

1 Answers1

0

Just replace

pod 'linphone-sdk'

with

pod 'linphone-sdk-novideo'

in your podfile

StaticV0id
  • 411
  • 4
  • 13