diff options
author | Thomas Van Lenten <thomasvl@google.com> | 2020-10-22 11:21:52 -0400 |
---|---|---|
committer | Thomas Van Lenten <thomasvl@google.com> | 2020-10-22 11:22:57 -0400 |
commit | a51cd94e05891032f75c0061b4d570c33f0996c2 (patch) | |
tree | d65109ead42e3c94f754f677d9ee2f179ea55f12 | |
parent | f3ee6834cad9091382b6c95fdb68dc28b204859c (diff) |
Fix some other iOS min versions to support Xcode 12.
-rw-r--r-- | GoogleToolboxForMac.podspec | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/GoogleToolboxForMac.podspec b/GoogleToolboxForMac.podspec index b2c7785..512f4d6 100644 --- a/GoogleToolboxForMac.podspec +++ b/GoogleToolboxForMac.podspec @@ -157,7 +157,7 @@ Pod::Spec.new do |s| end s.subspec 'iPhone' do |sp| - sp.platform = :ios, '5.0' + sp.platform = :ios, '9.0' sp.source_files = 'iPhone/GTMFadeTruncatingLabel.{h,m}', 'iPhone/GTMUIImage+Resize.{h,m}', @@ -167,7 +167,7 @@ Pod::Spec.new do |s| end s.subspec 'RoundedRectPath' do |sp| - sp.platform = :ios, '5.0' + sp.platform = :ios, '9.0' sp.source_files = 'iPhone/GTMRoundedRectPath.{h,m}' sp.requires_arc = 'iPhone/GTMRoundedRectPath.{h,m}' sp.frameworks = 'CoreGraphics' @@ -175,13 +175,13 @@ Pod::Spec.new do |s| end s.subspec 'UIFont+LineHeight' do |sp| - sp.platform = :ios, '5.0' + sp.platform = :ios, '9.0' sp.source_files = 'iPhone/GTMUIFont+LineHeight.{h,m}' sp.requires_arc = 'iPhone/GTMUIFont+LineHeight.{h,m}' end s.subspec 'UnitTesting' do |sp| - sp.platform = :ios, '5.0' + sp.platform = :ios, '9.0' sp.source_files = 'UnitTesting/GTMFoundationUnitTestingUtilities.{h,m}', 'UnitTesting/GTMSenTestCase.{h,m}', @@ -193,7 +193,7 @@ Pod::Spec.new do |s| end s.subspec 'UnitTestingAppLib' do |sp| - sp.platform = :ios, '5.0' + sp.platform = :ios, '9.0' sp.source_files = 'UnitTesting/GTMCodeCoverageApp.h', 'UnitTesting/GTMIPhoneUnitTestDelegate.{h,m}' |