diff options
author | Vitaly Takmazov | 2018-10-16 23:31:01 +0300 |
---|---|---|
committer | Vitaly Takmazov | 2018-10-16 23:31:01 +0300 |
commit | b81b10a8d8e7f077eb5370e6c07b123de56cea8d (patch) | |
tree | 3eaec3b6fa481301381a8a69bd59d39043c866b3 /Podfile | |
parent | a5e3e57ee67ace2cebd51ab8dfe760be4e910df5 (diff) |
fix pods deploymen target
Diffstat (limited to 'Podfile')
-rw-r--r-- | Podfile | 8 |
1 files changed, 8 insertions, 0 deletions
@@ -13,3 +13,11 @@ target "Juick" do pod 'UIView+Shimmer' end +post_install do |installer| + installer.pods_project.targets.each do |target| + target.build_configurations.each do |config| + config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '11.1' + end + end +end + |