Cocoapods: Target has transitive dependencies that include static binaries when setting 'VialerSIPLib'

I am trying to set objective-c Wrapper for Jsip 'VialerSIPLib' and use it in my quick project, here is my pod

platform :ios, ’10.0

use_frameworks!
target 'EMedicalAdmin' do
pod 'ObjectMapper', '~> 2.1'
pod 'Alamofire', '~> 4.3'
pod 'SwiftyAvatar', '~> 1.0'
pod 'AlamofireImage', '~> 3.1'
pod 'Eureka', '~> 2.0.0-beta.1'
pod 'JSQMessagesViewController', :git => 'https://github.com/jessesquires/JSQMessagesViewController.git', :branch => 'develop'
pod 'PKHUD', '~> 4.0'
pod 'Firebase/Core'
pod 'Firebase/Messaging'
pod 'ImageSlideshow', '~> 1.1.0'
pod 'SwiftyJSON'
pod "FlexibleSteppedProgressBar"
pod 'BTNavigationDropdownMenu', :git => 'https://github.com/PhamBaTho/BTNavigationDropdownMenu.git', :branch => 'swift-3.0'
pod 'VialerSIPLib'
end

but I get this error during installation: -

target has transitive dependencies that include static binaries:

and if i delete

use_frameworks!

from my podfile it will work, but all my other fast containers will not work

So, I stay using only this one module (VialerSIPLib) or use all my other modules except it

+6
source share
3

- ,

, CocoaPods use_frameworks!, - , , , .

. , Framework

: -

1 , Cocoapods _frameworks!

2- Carthage

3 Carthage, ( , )

+1

use_frameworks! , pod.lock .

, pod.lock, pod repo update pod install

0

, , : https://github.com/Lucashuang0802/CocoaPodsWithCarthage

, : - objective-c lib CocoaPods use_framework! - Swift Carthage

.

-1

Source: https://habr.com/ru/post/1016337/


All Articles