Ted
Ted

Reputation: 23746

cocoapods 1.2 Always Embed Swift Standard Libraries inconsistent behavior

What is the basis of this?

enter image description here

All my targets use the same pods and has $(inherited) enter image description here

my podfile:

def core_pods
    pod 'MRCountryPicker', :git => 'https://github.com/useeless37/MRCountryPicker.git'
    pod 'TrueTime'
    pod 'PermissionScope'
    pod 'FBSDKCoreKit'
    pod 'FBSDKShareKit'
    pod 'FBSDKLoginKit'
    pod 'Mantle'
    pod 'HockeySDK', '~> 4'
    pod 'GoogleMaps', '~> 2'
    pod 'GooglePlaces', '~> 2'
    pod 'Stripe'
    pod 'SVProgressHUD'
    pod 'RestKit'
    pod 'AFNetworking', '~> 1.3.4'
    pod 'Fabric'
    pod 'Crashlytics'
    pod 'SAMKeychain'
    pod 'SDWebImage'
    pod 'TTTAttributedLabel'
    pod 'UIActivityIndicator-for-SDWebImage'
    pod 'ZLPeoplePickerViewController'
    pod 'KVOController'
    pod 'OHHTTPStubs'
end

target 'target1' do
    core_pods
end
target 'target2' do
    core_pods
end
target 'target3' do
    core_pods
end
target 'target4' do
    core_pods
end
target 'target5' do
    core_pods
end
target 'target6' do
    core_pods
end
target 'target7' do
    core_pods
end

Upvotes: 1

Views: 228

Answers (0)

Related Questions