Skip to content

Commit

Permalink
Update podfile to fix build errors for example project.
Browse files Browse the repository at this point in the history
  • Loading branch information
serhii-londar committed Nov 14, 2024
1 parent eb2a1b2 commit b3cb579
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
10 changes: 10 additions & 0 deletions Example/Podfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,3 +13,13 @@ target 'AppleReminders' do
pod 'CrowdinSDK', :path => '../'
pod 'CrowdinSDK/Settings', :path => '../'
end

post_install do |installer|
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
if Gem::Version.new('12.0') > Gem::Version.new(config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'])
config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '12.0'
end
end
end
end
2 changes: 1 addition & 1 deletion Example/Podfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,6 @@ SPEC CHECKSUMS:
SwiftDate: bbc26e26fc8c0c33fbee8c140c5e8a68293a148a
SwiftLint: 1cc5cd61ba9bacb2194e340aeb47a2a37fda00b3

PODFILE CHECKSUM: 074b840e8445d9c503f88d22ae46cf4abf8bae59
PODFILE CHECKSUM: ac5ff3869bd8ecdae9e8e3231cff600cc696330e

COCOAPODS: 1.15.2

0 comments on commit b3cb579

Please sign in to comment.