# Uncomment this line to define a global platform for your project
platform :ios, '9.0'
# Uncomment this line if you're using Swift
use_frameworks!
target 'MyPROJECT' do
pod 'ActionSheetPicker-3.0'
pod 'Alamofire', git: 'https://github.com/LimeHD/Alamofire.git', branch: 'v4.8.2_decrease_timeout_interval'
pod 'Firebase/Analytics','7.11.0'
pod 'Firebase/Crashlytics','7.11.0'
pod 'Google-Mobile-Ads-SDK','7.69.0'
pod 'GoogleMobileAdsMediationFacebook'
pod 'GoogleMobileAdsMediationMyTarget'
pod 'GoogleMobileAdsMediationMoPub'
pod 'google-cast-sdk','4.4.7'
pod 'GoogleAds-IMA-iOS-SDK'
pod 'SwiftyStoreKit'
pod 'SwiftyJSON'
pod 'M3U8Kit', git: 'https://github.com/LimeHD/M3U8Parser.git', branch: 'limehd_0.2.5'
pod 'mopub-ios-sdk'
pod 'YandexMobileAds/Dynamic','~> 4.1'
pod 'YandexMobileMetrica/Dynamic','3.16.0'
pod 'YandexMobileMetricaPush/Dynamic'
pod 'RealmSwift', '4.4.1'
pod 'myTargetSDK'
pod 'Project', git: 'https://mob_sdk_partner:PARTNER_ID@gitlab.project.media/project/sdk_mob_ios_dist.git', tag: '4.4.2'
end
target 'NotificationService' do
pod 'YandexMobileMetricaPush/Dynamic'
end
deployment_target = '9.0'
post_install do |installer|
installer.generated_projects.each do |project|
project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = deployment_target
end
end
project.build_configurations.each do |config|
config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = deployment_target
end
end
end
Report
What did you do?
pod install
.pod 'YandexMobileMetrica/Dynamic','3.16.0'
->pod 'YandexMobileMetrica/Dynamic','3.17.0'
pod install
What did you expect to happen?
Install all pod dependencies correctly from the Podfile.lock.
What happened instead?
Installion from wrong installation source: e.g.
pod 'Alamofire', git: 'https://github.com/LimeHD/Alamofire.git', branch: 'v4.8.2_decrease_timeout_interval'
useshttps://github.com/Alamofire/Alamofire.git
instead ofhttps://github.com/LimeHD/Alamofire.git
pod 'Project', git: 'https://mob_sdk_partner:PARTNER_ID@gitlab.project.media/project/sdk_mob_ios_dist.git', tag: '4.4.2'
usesssh
instead ofhttp
Workaround
pod install
.CocoaPods Environment
Stack
Installation Source
Plugins
Podfile
Project that demonstrates the issue
Private.