Skip to content

Commit

Permalink
bump platform :ios to 12
Browse files Browse the repository at this point in the history
  • Loading branch information
HannahShiSFB committed Jan 10, 2025
1 parent d558bc1 commit 9c0492c
Show file tree
Hide file tree
Showing 14 changed files with 16 additions and 16 deletions.
2 changes: 1 addition & 1 deletion examples/cpp/helloworld/cocoapods/Podfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '11.0'
platform :ios, '12.0'

install! 'cocoapods', :deterministic_uuids => false

Expand Down
2 changes: 1 addition & 1 deletion examples/objective-c/auth_sample/Podfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '11.0'
platform :ios, '12.0'

install! 'cocoapods', :deterministic_uuids => false

Expand Down
2 changes: 1 addition & 1 deletion examples/objective-c/helloworld/Podfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '11.0'
platform :ios, '12.0'

install! 'cocoapods', :deterministic_uuids => false

Expand Down
2 changes: 1 addition & 1 deletion examples/objective-c/route_guide/Podfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '11.0'
platform :ios, '12.0'

install! 'cocoapods', :deterministic_uuids => false

Expand Down
2 changes: 1 addition & 1 deletion src/objective-c/examples/InterceptorSample/Podfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
platform :ios, '11.0'
platform :ios, '12.0'

install! 'cocoapods', :deterministic_uuids => false

Expand Down
2 changes: 1 addition & 1 deletion src/objective-c/examples/Sample/Podfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '11.0'
platform :ios, '12.0'

install! 'cocoapods', :deterministic_uuids => false

Expand Down
2 changes: 1 addition & 1 deletion src/objective-c/examples/SwiftSample/Podfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '11.0'
platform :ios, '12.0'

install! 'cocoapods', :deterministic_uuids => false

Expand Down
2 changes: 1 addition & 1 deletion src/objective-c/examples/SwiftUseFrameworks/Podfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '11.0'
platform :ios, '12.0'

# Without this we get linker errors due to files with same names but different paths
# ref: https://github.com/CocoaPods/CocoaPods/issues/8289#issuecomment-1022723820
Expand Down
2 changes: 1 addition & 1 deletion src/objective-c/examples/watchOS-sample/Podfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ def grpc_deps
end

target 'watchOS-sample' do
platform :ios, '11.0'
platform :ios, '12.0'
grpc_deps
end

Expand Down
2 changes: 1 addition & 1 deletion src/objective-c/manual_tests/Podfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '11.0'
platform :ios, '12.0'

install! 'cocoapods', :deterministic_uuids => false

Expand Down
2 changes: 1 addition & 1 deletion src/objective-c/tests/Connectivity/Podfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
install! 'cocoapods', :deterministic_uuids => false
platform :ios, '11.0'
platform :ios, '12.0'

# Location of gRPC's repo root relative to this file.
GRPC_LOCAL_SRC = '../../../..'
Expand Down
6 changes: 3 additions & 3 deletions src/objective-c/tests/Podfile
Original file line number Diff line number Diff line change
Expand Up @@ -36,21 +36,21 @@ end
InteropTests
).each do |target_name|
target target_name do
platform :ios, '11.0'
platform :ios, '12.0'
grpc_deps
end
end

target 'CronetTests' do
platform :ios, '11.0'
platform :ios, '12.0'
grpc_deps

pod 'gRPC/GRPCCoreCronet', :path => GRPC_LOCAL_SRC
pod 'CronetFramework', :podspec => "#{GRPC_LOCAL_SRC}/src/objective-c"
end

target 'PerfTests' do
platform :ios, '11.0'
platform :ios, '12.0'
grpc_deps

pod 'gRPC/GRPCCoreCronet', :path => GRPC_LOCAL_SRC
Expand Down
2 changes: 1 addition & 1 deletion test/core/iomgr/ios/CFStreamTests/Podfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '11.0'
platform :ios, '12.0'

install! 'cocoapods', :deterministic_uuids => false

Expand Down
2 changes: 1 addition & 1 deletion test/cpp/cocoapods/Podfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '11.0'
platform :ios, '12.0'

install! 'cocoapods', :deterministic_uuids => false

Expand Down

0 comments on commit 9c0492c

Please sign in to comment.