Error with cocoapods link_with after update to 1.0.0

后端 未结 3 1127
悲哀的现实
悲哀的现实 2020-12-16 10:08

I have updated cocoapods today to 1.0.0 version. I got this string when I update the pods:

[!] Invalid Podfile file: [!] The specification of link_with in the

3条回答
  •  自闭症患者
    2020-12-16 10:15

    Try this. Works for me with more than one target.

    source 'https://github.com/CocoaPods/Specs.git'
    
    platform :ios, '8.0'
    
    def myPods
        pod 'pop', '~> 1.0'
        pod 'AFNetworking', '~> 1.3'
        pod 'SDWebImage', '~> 3.7'
        pod 'GoogleAnalytics', '~> 3'
        pod 'ARAnalytics' , :subspecs => ["Crashlytics", "Amplitude", "DSL"]
        pod 'FBSDKCoreKit', '~> 4.10.1'
        pod 'FBSDKLoginKit', '~> 4.10.1'
        pod 'FBSDKShareKit', '~> 4.10.1'
        pod 'Google/SignIn'
        pod 'Branch'
    
        pod 'Leanplum-iOS-SDK'
    
        pod 'Fabric', '1.6.7'
        pod 'Crashlytics', '3.7.0'
        pod 'TwitterKit'
        pod 'Digits'
    end
    
    target 'yourTargetOne' do
        myPods
    end
    
    target 'yourTargetTwo' do
        myPods
    end
    
    target 'minubeTests' do
        pod 'OCMockito'
    end
    

提交回复
热议问题