Skip to content

Commit

Permalink
Updated Podfile and .podspec files to target ios 11. Also updated exa…
Browse files Browse the repository at this point in the history
…mple projects to target ios 11.
  • Loading branch information
adamsousa committed Jan 11, 2024
1 parent 16c411f commit e65f08a
Show file tree
Hide file tree
Showing 11 changed files with 27 additions and 27 deletions.
4 changes: 2 additions & 2 deletions Examples/ObjC/OHHTTPStubsDemo.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -282,7 +282,7 @@
GCC_WARN_UNKNOWN_PRAGMAS = YES;
GCC_WARN_UNUSED_FUNCTION = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
IPHONEOS_DEPLOYMENT_TARGET = 11.0;
ONLY_ACTIVE_ARCH = YES;
OTHER_LDFLAGS = "-ObjC";
SDKROOT = iphoneos;
Expand Down Expand Up @@ -332,7 +332,7 @@
GCC_WARN_UNKNOWN_PRAGMAS = YES;
GCC_WARN_UNUSED_FUNCTION = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
IPHONEOS_DEPLOYMENT_TARGET = 11.0;
OTHER_CFLAGS = "-DNS_BLOCK_ASSERTIONS=1";
OTHER_LDFLAGS = "-ObjC";
SDKROOT = iphoneos;
Expand Down
2 changes: 1 addition & 1 deletion Examples/ObjC/Podfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
source 'https://github.com/CocoaPods/Specs.git'

project 'OHHTTPStubsDemo.xcodeproj'
platform :ios, '8.0'
platform :ios, '11.0'

target 'OHHTTPStubsDemo' do
pod 'OHHTTPStubs', :path => '../..'
Expand Down
4 changes: 2 additions & 2 deletions Examples/ObjC/Pods/Local Podspecs/OHHTTPStubs.podspec.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 6 additions & 6 deletions Examples/ObjC/Pods/Pods.xcodeproj/project.pbxproj

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions Examples/Swift/OHHTTPStubsDemo.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -356,7 +356,7 @@
buildSettings = {
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
INFOPLIST_FILE = "$(SRCROOT)/Supporting Files/Info.plist";
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
IPHONEOS_DEPLOYMENT_TARGET = 11.0;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
PRODUCT_BUNDLE_IDENTIFIER = "com.alisoftware.$(PRODUCT_NAME:rfc1034identifier)";
PRODUCT_NAME = "$(TARGET_NAME)";
Expand All @@ -369,7 +369,7 @@
buildSettings = {
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
INFOPLIST_FILE = "$(SRCROOT)/Supporting Files/Info.plist";
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
IPHONEOS_DEPLOYMENT_TARGET = 11.0;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
PRODUCT_BUNDLE_IDENTIFIER = "com.alisoftware.$(PRODUCT_NAME:rfc1034identifier)";
PRODUCT_NAME = "$(TARGET_NAME)";
Expand Down
2 changes: 1 addition & 1 deletion Examples/Swift/Podfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
source 'https://github.com/CocoaPods/Specs.git'

project 'OHHTTPStubsDemo.xcodeproj'
platform :ios, '8.0'
platform :ios, '11.0'
use_frameworks!

target 'OHHTTPStubsDemo' do
Expand Down
4 changes: 2 additions & 2 deletions Examples/Swift/Pods/Local Podspecs/OHHTTPStubs.podspec.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 6 additions & 6 deletions Examples/Swift/Pods/Pods.xcodeproj/project.pbxproj

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions OHHTTPStubs.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ Pod::Spec.new do |s|
s.frameworks = 'Foundation', 'CFNetwork'

s.requires_arc = true
s.ios.deployment_target = '8.0'
s.ios.deployment_target = '11.0'
s.osx.deployment_target = '10.9'
s.watchos.deployment_target = '2.0'
s.tvos.deployment_target = '9.0'
Expand Down Expand Up @@ -76,7 +76,7 @@ Pod::Spec.new do |s|
end

s.subspec 'Swift' do |swift|
swift.ios.deployment_target = '8.0'
swift.ios.deployment_target = '11.0'
swift.osx.deployment_target = '10.9'
swift.watchos.deployment_target = '2.0'
swift.tvos.deployment_target = '9.0'
Expand Down
4 changes: 2 additions & 2 deletions Podfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@ abstract_target 'TestingPods' do
pod 'AFNetworking', '~> 3.0'

target 'OHHTTPStubs iOS Lib Tests' do
platform :ios, '8.0'
platform :ios, '11.0'
end

target 'OHHTTPStubs iOS Fmk Tests' do
platform :ios, '8.0'
platform :ios, '11.0'
end

target 'OHHTTPStubs Mac Tests' do
Expand Down
2 changes: 1 addition & 1 deletion Pods/AFNetworking/README.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit e65f08a

Please sign in to comment.