Skip to content

Commit 65dd7b9

Browse files
author
AWS
committed
The AWS Mobile SDK for iOS 2.6.6.
1 parent ed4cf2e commit 65dd7b9

File tree

133 files changed

+1223
-186
lines changed

Some content is hidden

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

133 files changed

+1223
-186
lines changed

AWSAPIGateway.podspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Pod::Spec.new do |s|
22

33
s.name = 'AWSAPIGateway'
4-
s.version = '2.6.5'
4+
s.version = '2.6.6'
55
s.summary = 'Amazon Web Services SDK for iOS.'
66

77
s.description = 'The AWS SDK for iOS provides a library, code samples, and documentation for developers to build connected mobile applications using AWS.'
@@ -13,7 +13,7 @@ Pod::Spec.new do |s|
1313
s.source = { :git => 'https://github.com/aws/aws-sdk-ios.git',
1414
:tag => s.version}
1515
s.requires_arc = true
16-
s.dependency 'AWSCore', '2.6.5'
16+
s.dependency 'AWSCore', '2.6.6'
1717

1818
s.source_files = 'AWSAPIGateway/*.{h,m}'
1919
end

AWSAPIGateway/AWSAPIGatewayClient.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323

2424
static NSString *const AWSAPIGatewayAPIKeyHeader = @"x-api-key";
2525

26-
static NSString *const AWSAPIGatewaySDKVersion = @"2.6.5";
26+
static NSString *const AWSAPIGatewaySDKVersion = @"2.6.6";
2727

2828
static int defaultChunkSize = 1024;
2929

AWSAPIGateway/Info.plist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<key>CFBundlePackageType</key>
1616
<string>FMWK</string>
1717
<key>CFBundleShortVersionString</key>
18-
<string>2.6.5</string>
18+
<string>2.6.6</string>
1919
<key>CFBundleSignature</key>
2020
<string>????</string>
2121
<key>CFBundleVersion</key>

AWSAuth.podspec

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = 'AWSAuth'
3-
s.version = '2.6.5'
3+
s.version = '2.6.6'
44
s.summary = 'Amazon Web Services SDK for iOS.'
55

66
s.description = 'The AWS SDK for iOS provides a library, code samples, and documentation for developers to build connected mobile applications using AWS.'
@@ -14,23 +14,23 @@ Pod::Spec.new do |s|
1414
s.requires_arc = true
1515

1616
s.subspec 'Core' do |authcore|
17-
authcore.dependency 'AWSAuthCore', '2.6.5'
17+
authcore.dependency 'AWSAuthCore', '2.6.6'
1818
end
1919

2020
s.subspec 'FacebookSignIn' do |facebook|
21-
facebook.dependency 'AWSFacebookSignIn', '2.6.5'
21+
facebook.dependency 'AWSFacebookSignIn', '2.6.6'
2222
end
2323

2424
s.subspec 'GoogleSignIn' do |google|
25-
google.dependency 'AWSGoogleSignIn', '2.6.5'
25+
google.dependency 'AWSGoogleSignIn', '2.6.6'
2626
end
2727

2828
s.subspec 'UserPoolsSignIn' do |up|
29-
up.dependency 'AWSUserPoolsSignIn', '2.6.5'
29+
up.dependency 'AWSUserPoolsSignIn', '2.6.6'
3030
end
3131

3232
s.subspec 'UI' do |ui|
33-
ui.dependency 'AWSAuthUI', '2.6.5'
33+
ui.dependency 'AWSAuthUI', '2.6.6'
3434
end
3535

3636
end

AWSAuthCore.podspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = 'AWSAuthCore'
3-
s.version = '2.6.5'
3+
s.version = '2.6.6'
44
s.summary = 'Amazon Web Services SDK for iOS.'
55

66
s.description = 'The AWS SDK for iOS provides a library, code samples, and documentation for developers to build connected mobile applications using AWS.'
@@ -12,7 +12,7 @@ Pod::Spec.new do |s|
1212
s.source = { :git => 'https://github.com/aws/aws-sdk-ios.git',
1313
:tag => s.version}
1414
s.requires_arc = true
15-
s.dependency 'AWSCore', '2.6.5'
15+
s.dependency 'AWSCore', '2.6.6'
1616
s.source_files = 'AWSAuthSDK/Sources/AWSAuthCore/*.{h,m}'
1717
s.public_header_files = 'AWSAuthSDK/Sources/AWSAuthCore/*.h'
1818
end

AWSAuthSDK/AWSAuthSDK.xcodeproj/project.pbxproj

Lines changed: 155 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -97,6 +97,9 @@
9797
B58F54C01F382441009ED450 /* AWSSignInViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = B58F53D71F381A51009ED450 /* AWSSignInViewController.m */; };
9898
B58F54C21F382449009ED450 /* SignIn.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = B58F53D51F381A51009ED450 /* SignIn.storyboard */; };
9999
B58F54C31F382449009ED450 /* AWSSignInViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = B58F53D61F381A51009ED450 /* AWSSignInViewController.h */; };
100+
B5FC69051FAFA1AA004790CB /* AWSMobileClient.h in Headers */ = {isa = PBXBuildFile; fileRef = B5FC69031FAFA1AA004790CB /* AWSMobileClient.h */; settings = {ATTRIBUTES = (Public, ); }; };
101+
B5FC690A1FAFA1D0004790CB /* AWSMobileClient.m in Sources */ = {isa = PBXBuildFile; fileRef = B5FC69091FAFA1D0004790CB /* AWSMobileClient.m */; };
102+
B5FC690B1FAFA1DF004790CB /* Info.plist in Resources */ = {isa = PBXBuildFile; fileRef = B5FC69041FAFA1AA004790CB /* Info.plist */; };
100103
/* End PBXBuildFile section */
101104

102105
/* Begin PBXContainerItemProxy section */
@@ -695,6 +698,13 @@
695698
remoteGlobalIDString = B5170D971F466CE5008FD811;
696699
remoteInfo = AWSAuthCore;
697700
};
701+
B5FC69F21FB2EEAD004790CB /* PBXContainerItemProxy */ = {
702+
isa = PBXContainerItemProxy;
703+
containerPortal = 175869971EF8899700F1452C /* Project object */;
704+
proxyType = 1;
705+
remoteGlobalIDString = B5170D971F466CE5008FD811;
706+
remoteInfo = AWSAuthCore;
707+
};
698708
/* End PBXContainerItemProxy section */
699709

700710
/* Begin PBXFileReference section */
@@ -793,6 +803,10 @@
793803
B5C564941F2B2162004FF3CF /* AWSSignInProvider.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AWSSignInProvider.h; sourceTree = "<group>"; };
794804
B5C564951F2B2162004FF3CF /* AWSSignInProviderApplicationIntercept.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AWSSignInProviderApplicationIntercept.h; sourceTree = "<group>"; };
795805
B5C564961F2B2162004FF3CF /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
806+
B5FC69011FAFA1AA004790CB /* AWSMobileClient.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = AWSMobileClient.framework; sourceTree = BUILT_PRODUCTS_DIR; };
807+
B5FC69031FAFA1AA004790CB /* AWSMobileClient.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AWSMobileClient.h; sourceTree = "<group>"; };
808+
B5FC69041FAFA1AA004790CB /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
809+
B5FC69091FAFA1D0004790CB /* AWSMobileClient.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = AWSMobileClient.m; sourceTree = "<group>"; };
796810
/* End PBXFileReference section */
797811

798812
/* Begin PBXFrameworksBuildPhase section */
@@ -831,6 +845,13 @@
831845
);
832846
runOnlyForDeploymentPostprocessing = 0;
833847
};
848+
B5FC68FD1FAFA1AA004790CB /* Frameworks */ = {
849+
isa = PBXFrameworksBuildPhase;
850+
buildActionMask = 2147483647;
851+
files = (
852+
);
853+
runOnlyForDeploymentPostprocessing = 0;
854+
};
834855
/* End PBXFrameworksBuildPhase section */
835856

836857
/* Begin PBXGroup section */
@@ -888,6 +909,7 @@
888909
176375401F328D210086588B /* AWSFacebookSignIn.framework */,
889910
B5345D0F1F366AFA009C1041 /* AWSAuthUI.framework */,
890911
B5170D981F466CE5008FD811 /* AWSAuthCore.framework */,
912+
B5FC69011FAFA1AA004790CB /* AWSMobileClient.framework */,
891913
);
892914
name = Products;
893915
sourceTree = "<group>";
@@ -903,6 +925,7 @@
903925
176B3BDC1F21704400ED3733 /* Sources */ = {
904926
isa = PBXGroup;
905927
children = (
928+
B5FC69021FAFA1AA004790CB /* AWSMobileClient */,
906929
B5345D101F366AFA009C1041 /* AWSAuthUI */,
907930
B5C564B61F2B2302004FF3CF /* AWSAuthCore */,
908931
1786CA421F2BED46003421FF /* AWSFacebookSignIn */,
@@ -1118,6 +1141,16 @@
11181141
path = AWSAuthCore;
11191142
sourceTree = "<group>";
11201143
};
1144+
B5FC69021FAFA1AA004790CB /* AWSMobileClient */ = {
1145+
isa = PBXGroup;
1146+
children = (
1147+
B5FC69031FAFA1AA004790CB /* AWSMobileClient.h */,
1148+
B5FC69041FAFA1AA004790CB /* Info.plist */,
1149+
B5FC69091FAFA1D0004790CB /* AWSMobileClient.m */,
1150+
);
1151+
path = AWSMobileClient;
1152+
sourceTree = "<group>";
1153+
};
11211154
/* End PBXGroup section */
11221155

11231156
/* Begin PBXHeadersBuildPhase section */
@@ -1223,6 +1256,14 @@
12231256
);
12241257
runOnlyForDeploymentPostprocessing = 0;
12251258
};
1259+
B5FC68FE1FAFA1AA004790CB /* Headers */ = {
1260+
isa = PBXHeadersBuildPhase;
1261+
buildActionMask = 2147483647;
1262+
files = (
1263+
B5FC69051FAFA1AA004790CB /* AWSMobileClient.h in Headers */,
1264+
);
1265+
runOnlyForDeploymentPostprocessing = 0;
1266+
};
12261267
/* End PBXHeadersBuildPhase section */
12271268

12281269
/* Begin PBXNativeTarget section */
@@ -1322,6 +1363,25 @@
13221363
productReference = B5345D0F1F366AFA009C1041 /* AWSAuthUI.framework */;
13231364
productType = "com.apple.product-type.framework";
13241365
};
1366+
B5FC69001FAFA1AA004790CB /* AWSMobileClient */ = {
1367+
isa = PBXNativeTarget;
1368+
buildConfigurationList = B5FC69061FAFA1AA004790CB /* Build configuration list for PBXNativeTarget "AWSMobileClient" */;
1369+
buildPhases = (
1370+
B5FC68FC1FAFA1AA004790CB /* Sources */,
1371+
B5FC68FD1FAFA1AA004790CB /* Frameworks */,
1372+
B5FC68FE1FAFA1AA004790CB /* Headers */,
1373+
B5FC68FF1FAFA1AA004790CB /* Resources */,
1374+
);
1375+
buildRules = (
1376+
);
1377+
dependencies = (
1378+
B5FC69F31FB2EEAD004790CB /* PBXTargetDependency */,
1379+
);
1380+
name = AWSMobileClient;
1381+
productName = AWSMobileClient;
1382+
productReference = B5FC69011FAFA1AA004790CB /* AWSMobileClient.framework */;
1383+
productType = "com.apple.product-type.framework";
1384+
};
13251385
/* End PBXNativeTarget section */
13261386

13271387
/* Begin PBXProject section */
@@ -1351,6 +1411,10 @@
13511411
CreatedOnToolsVersion = 8.3.3;
13521412
ProvisioningStyle = Automatic;
13531413
};
1414+
B5FC69001FAFA1AA004790CB = {
1415+
CreatedOnToolsVersion = 9.0.1;
1416+
ProvisioningStyle = Automatic;
1417+
};
13541418
};
13551419
};
13561420
buildConfigurationList = 1758699A1EF8899700F1452C /* Build configuration list for PBXProject "AWSAuthSDK" */;
@@ -1377,6 +1441,7 @@
13771441
1763753F1F328D210086588B /* AWSFacebookSignIn */,
13781442
B5345D0E1F366AFA009C1041 /* AWSAuthUI */,
13791443
B5170D971F466CE5008FD811 /* AWSAuthCore */,
1444+
B5FC69001FAFA1AA004790CB /* AWSMobileClient */,
13801445
);
13811446
};
13821447
/* End PBXProject section */
@@ -1978,6 +2043,14 @@
19782043
);
19792044
runOnlyForDeploymentPostprocessing = 0;
19802045
};
2046+
B5FC68FF1FAFA1AA004790CB /* Resources */ = {
2047+
isa = PBXResourcesBuildPhase;
2048+
buildActionMask = 2147483647;
2049+
files = (
2050+
B5FC690B1FAFA1DF004790CB /* Info.plist in Resources */,
2051+
);
2052+
runOnlyForDeploymentPostprocessing = 0;
2053+
};
19812054
/* End PBXResourcesBuildPhase section */
19822055

19832056
/* Begin PBXSourcesBuildPhase section */
@@ -2034,6 +2107,14 @@
20342107
);
20352108
runOnlyForDeploymentPostprocessing = 0;
20362109
};
2110+
B5FC68FC1FAFA1AA004790CB /* Sources */ = {
2111+
isa = PBXSourcesBuildPhase;
2112+
buildActionMask = 2147483647;
2113+
files = (
2114+
B5FC690A1FAFA1D0004790CB /* AWSMobileClient.m in Sources */,
2115+
);
2116+
runOnlyForDeploymentPostprocessing = 0;
2117+
};
20372118
/* End PBXSourcesBuildPhase section */
20382119

20392120
/* Begin PBXTargetDependency section */
@@ -2067,6 +2148,11 @@
20672148
target = B5170D971F466CE5008FD811 /* AWSAuthCore */;
20682149
targetProxy = B5BAA4911F46768B005A67A5 /* PBXContainerItemProxy */;
20692150
};
2151+
B5FC69F31FB2EEAD004790CB /* PBXTargetDependency */ = {
2152+
isa = PBXTargetDependency;
2153+
target = B5170D971F466CE5008FD811 /* AWSAuthCore */;
2154+
targetProxy = B5FC69F21FB2EEAD004790CB /* PBXContainerItemProxy */;
2155+
};
20702156
/* End PBXTargetDependency section */
20712157

20722158
/* Begin XCBuildConfiguration section */
@@ -2368,6 +2454,66 @@
23682454
};
23692455
name = Release;
23702456
};
2457+
B5FC69071FAFA1AA004790CB /* Debug */ = {
2458+
isa = XCBuildConfiguration;
2459+
buildSettings = {
2460+
CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
2461+
CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
2462+
CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
2463+
CLANG_WARN_COMMA = YES;
2464+
CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
2465+
CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
2466+
CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
2467+
CLANG_WARN_STRICT_PROTOTYPES = YES;
2468+
CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
2469+
CODE_SIGN_IDENTITY = "iPhone Developer";
2470+
CODE_SIGN_STYLE = Automatic;
2471+
DEFINES_MODULE = YES;
2472+
DYLIB_COMPATIBILITY_VERSION = 1;
2473+
DYLIB_CURRENT_VERSION = 1;
2474+
DYLIB_INSTALL_NAME_BASE = "@rpath";
2475+
GCC_C_LANGUAGE_STANDARD = gnu11;
2476+
INFOPLIST_FILE = Sources/AWSMobileClient/Info.plist;
2477+
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
2478+
IPHONEOS_DEPLOYMENT_TARGET = 11.0;
2479+
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
2480+
PRODUCT_BUNDLE_IDENTIFIER = com.amazonaws.AWSMobileClient;
2481+
PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)";
2482+
SKIP_INSTALL = YES;
2483+
TARGETED_DEVICE_FAMILY = "1,2";
2484+
};
2485+
name = Debug;
2486+
};
2487+
B5FC69081FAFA1AA004790CB /* Release */ = {
2488+
isa = XCBuildConfiguration;
2489+
buildSettings = {
2490+
CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
2491+
CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
2492+
CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
2493+
CLANG_WARN_COMMA = YES;
2494+
CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
2495+
CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
2496+
CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
2497+
CLANG_WARN_STRICT_PROTOTYPES = YES;
2498+
CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
2499+
CODE_SIGN_IDENTITY = "iPhone Developer";
2500+
CODE_SIGN_STYLE = Automatic;
2501+
DEFINES_MODULE = YES;
2502+
DYLIB_COMPATIBILITY_VERSION = 1;
2503+
DYLIB_CURRENT_VERSION = 1;
2504+
DYLIB_INSTALL_NAME_BASE = "@rpath";
2505+
GCC_C_LANGUAGE_STANDARD = gnu11;
2506+
INFOPLIST_FILE = Sources/AWSMobileClient/Info.plist;
2507+
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
2508+
IPHONEOS_DEPLOYMENT_TARGET = 11.0;
2509+
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
2510+
PRODUCT_BUNDLE_IDENTIFIER = com.amazonaws.AWSMobileClient;
2511+
PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)";
2512+
SKIP_INSTALL = YES;
2513+
TARGETED_DEVICE_FAMILY = "1,2";
2514+
};
2515+
name = Release;
2516+
};
23712517
/* End XCBuildConfiguration section */
23722518

23732519
/* Begin XCConfigurationList section */
@@ -2425,6 +2571,15 @@
24252571
defaultConfigurationIsVisible = 0;
24262572
defaultConfigurationName = Release;
24272573
};
2574+
B5FC69061FAFA1AA004790CB /* Build configuration list for PBXNativeTarget "AWSMobileClient" */ = {
2575+
isa = XCConfigurationList;
2576+
buildConfigurations = (
2577+
B5FC69071FAFA1AA004790CB /* Debug */,
2578+
B5FC69081FAFA1AA004790CB /* Release */,
2579+
);
2580+
defaultConfigurationIsVisible = 0;
2581+
defaultConfigurationName = Release;
2582+
};
24282583
/* End XCConfigurationList section */
24292584
};
24302585
rootObject = 175869971EF8899700F1452C /* Project object */;

0 commit comments

Comments
 (0)