Skip to content

Commit 1a2ce9f

Browse files
committed
Fixed deployment target issues and updated pods
1 parent 44cdbf9 commit 1a2ce9f

File tree

71 files changed

+3434
-1071
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

71 files changed

+3434
-1071
lines changed

Example/iOS Example.xcodeproj/project.pbxproj

+10-2
Original file line numberDiff line numberDiff line change
@@ -196,7 +196,9 @@
196196
TargetAttributes = {
197197
D4B85D7D1C53324600BD2FCD = {
198198
CreatedOnToolsVersion = 7.2;
199+
DevelopmentTeam = 76333YNXLE;
199200
LastSwiftMigration = 0800;
201+
ProvisioningStyle = Automatic;
200202
};
201203
};
202204
};
@@ -434,9 +436,12 @@
434436
isa = XCBuildConfiguration;
435437
buildSettings = {
436438
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
439+
CODE_SIGN_IDENTITY = "iPhone Developer";
440+
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
437441
DEBUG_INFORMATION_FORMAT = dwarf;
442+
DEVELOPMENT_TEAM = 76333YNXLE;
438443
INFOPLIST_FILE = "iOS Example/Info.plist";
439-
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
444+
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
440445
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
441446
PRODUCT_BUNDLE_IDENTIFIER = "io.Satyam.iOS-Example";
442447
PRODUCT_NAME = "$(TARGET_NAME)";
@@ -449,8 +454,11 @@
449454
isa = XCBuildConfiguration;
450455
buildSettings = {
451456
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
457+
CODE_SIGN_IDENTITY = "iPhone Developer";
458+
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
459+
DEVELOPMENT_TEAM = 76333YNXLE;
452460
INFOPLIST_FILE = "iOS Example/Info.plist";
453-
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
461+
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
454462
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
455463
PRODUCT_BUNDLE_IDENTIFIER = "io.Satyam.iOS-Example";
456464
PRODUCT_NAME = "$(TARGET_NAME)";

ForecastIO.xcodeproj/project.pbxproj

+2-2
Original file line numberDiff line numberDiff line change
@@ -1135,7 +1135,7 @@
11351135
GCC_PREFIX_HEADER = "Example/Pods/Target Support Files/ForecastIO/ForecastIO-prefix.pch";
11361136
INFOPLIST_FILE = Source/Info.plist;
11371137
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
1138-
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
1138+
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
11391139
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
11401140
MODULEMAP_FILE = "";
11411141
MTL_ENABLE_DEBUG_INFO = NO;
@@ -1212,7 +1212,7 @@
12121212
GCC_PREFIX_HEADER = "Example/Pods/Target Support Files/ForecastIO/ForecastIO-prefix.pch";
12131213
INFOPLIST_FILE = Source/Info.plist;
12141214
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
1215-
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
1215+
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
12161216
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
12171217
MODULEMAP_FILE = "";
12181218
MTL_ENABLE_DEBUG_INFO = YES;

Podfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ def testing_pods
88
end
99

1010
target 'ForecastIO iOS Tests' do
11-
platform :ios, '8.0'
11+
platform :ios, '9.0'
1212
testing_pods
1313
end
1414

Pods/OHHTTPStubs/OHHTTPStubs/Sources/OHHTTPStubs.m

+44-43
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Pods/OHHTTPStubs/OHHTTPStubs/Sources/OHPathHelpers/OHPathHelpers.h

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Pods/OHHTTPStubs/OHHTTPStubs/Sources/Swift/OHHTTPStubsSwift.swift

+16-15
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Pods/OHHTTPStubs/README.md

+3-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)