Skip to content

Commit

Permalink
The AWS Mobile SDK for iOS 2.3.1.
Browse files Browse the repository at this point in the history
  • Loading branch information
AWS committed Dec 2, 2015
1 parent 6473d06 commit 702dcd7
Show file tree
Hide file tree
Showing 206 changed files with 7,565 additions and 5,196 deletions.
4 changes: 2 additions & 2 deletions AWSAPIGateway.podspec
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Pod::Spec.new do |s|

s.name = 'AWSAPIGateway'
s.version = '2.3.0'
s.version = '2.3.1'
s.summary = 'Amazon Web Services SDK for iOS.'

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

s.source_files = 'AWSAPIGateway/*.{h,m}'
end
22 changes: 22 additions & 0 deletions AWSAPIGateway.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
objects = {

/* Begin PBXBuildFile section */
CE2EDE8E1BF3DEDA00B9F26B /* module.modulemap in CopyFiles */ = {isa = PBXBuildFile; fileRef = CE65522A1BEC35A300DACBC2 /* module.modulemap */; };
CE6BC1131B4A440C002E2414 /* libAWSAPIGateway.a in Frameworks */ = {isa = PBXBuildFile; fileRef = CE6BC1071B4A440B002E2414 /* libAWSAPIGateway.a */; };
CE6BC12C1B4A447D002E2414 /* AWSAPIGatewayClient.m in Sources */ = {isa = PBXBuildFile; fileRef = CE6BC12B1B4A447D002E2414 /* AWSAPIGatewayClient.m */; };
CEB2AE911B4B3A7300F32474 /* AWSAPIGateway.h in Headers */ = {isa = PBXBuildFile; fileRef = CEB2AE8F1B4B067800F32474 /* AWSAPIGateway.h */; settings = {ATTRIBUTES = (Public, ); }; };
Expand All @@ -26,6 +27,16 @@
/* End PBXContainerItemProxy section */

/* Begin PBXCopyFilesBuildPhase section */
CE2EDE8D1BF3DED300B9F26B /* CopyFiles */ = {
isa = PBXCopyFilesBuildPhase;
buildActionMask = 2147483647;
dstPath = "modules/$(PRODUCT_NAME)";
dstSubfolderSpec = 16;
files = (
CE2EDE8E1BF3DEDA00B9F26B /* module.modulemap in CopyFiles */,
);
runOnlyForDeploymentPostprocessing = 0;
};
CE6BC1051B4A440B002E2414 /* CopyFiles */ = {
isa = PBXCopyFilesBuildPhase;
buildActionMask = 2147483647;
Expand All @@ -40,6 +51,7 @@
/* End PBXCopyFilesBuildPhase section */

/* Begin PBXFileReference section */
CE65522A1BEC35A300DACBC2 /* module.modulemap */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = "sourcecode.module-map"; path = module.modulemap; sourceTree = "<group>"; };
CE6BC1071B4A440B002E2414 /* libAWSAPIGateway.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = libAWSAPIGateway.a; sourceTree = BUILT_PRODUCTS_DIR; };
CE6BC1121B4A440C002E2414 /* AWSAPIGatewayTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = AWSAPIGatewayTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
CE6BC1181B4A440C002E2414 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
Expand Down Expand Up @@ -88,6 +100,7 @@
CE6BC1091B4A440B002E2414 /* AWSAPIGateway */ = {
isa = PBXGroup;
children = (
CE65522A1BEC35A300DACBC2 /* module.modulemap */,
CEB2AE8F1B4B067800F32474 /* AWSAPIGateway.h */,
CE6BC12A1B4A447D002E2414 /* AWSAPIGatewayClient.h */,
CE6BC12B1B4A447D002E2414 /* AWSAPIGatewayClient.m */,
Expand Down Expand Up @@ -134,6 +147,7 @@
CE6BC1041B4A440B002E2414 /* Frameworks */,
CE6BC1051B4A440B002E2414 /* CopyFiles */,
CEB2AE901B4B3A6B00F32474 /* Headers */,
CE2EDE8D1BF3DED300B9F26B /* CopyFiles */,
);
buildRules = (
);
Expand Down Expand Up @@ -327,9 +341,13 @@
buildSettings = {
CLANG_ENABLE_MODULES = NO;
CLANG_ENABLE_MODULE_DEBUGGING = NO;
DEAD_CODE_STRIPPING = NO;
DEFINES_MODULE = YES;
MODULEMAP_FILE = "$(PRODUCT_NAME:c99extidentifier)/module.modulemap";
OTHER_LDFLAGS = "-ObjC";
PRODUCT_NAME = "$(TARGET_NAME)";
SKIP_INSTALL = YES;
STRIP_STYLE = "non-global";
};
name = Debug;
};
Expand All @@ -338,9 +356,13 @@
buildSettings = {
CLANG_ENABLE_MODULES = NO;
CLANG_ENABLE_MODULE_DEBUGGING = NO;
DEAD_CODE_STRIPPING = NO;
DEFINES_MODULE = YES;
MODULEMAP_FILE = "$(PRODUCT_NAME:c99extidentifier)/module.modulemap";
OTHER_LDFLAGS = "-ObjC";
PRODUCT_NAME = "$(TARGET_NAME)";
SKIP_INSTALL = YES;
STRIP_STYLE = "non-global";
};
name = Release;
};
Expand Down
6 changes: 6 additions & 0 deletions AWSAPIGateway/module.modulemap
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
framework module AWSAPIGateway {
umbrella header "AWSAPIGateway.h"

export *
module * { export * }
}
4 changes: 2 additions & 2 deletions AWSAutoScaling.podspec
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Pod::Spec.new do |s|

s.name = 'AWSAutoScaling'
s.version = '2.3.0'
s.version = '2.3.1'
s.summary = 'Amazon Web Services SDK for iOS.'

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

s.source_files = 'AWSAutoScaling/*.{h,m}'
end
34 changes: 32 additions & 2 deletions AWSAutoScaling.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,9 @@
BDF125681B45BF3000DFBFEC /* libz.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = CEE532551B03D1A8002CED62 /* libz.dylib */; };
BDF125691B45BF3000DFBFEC /* libAWSCore.a in Frameworks */ = {isa = PBXBuildFile; fileRef = BD00FF361AB8B683004496EF /* libAWSCore.a */; };
BDF1256A1B45BF3000DFBFEC /* libAWSAutoScaling.a in Frameworks */ = {isa = PBXBuildFile; fileRef = BDB5DF1C1AB37A79002DD224 /* libAWSAutoScaling.a */; };
CE27CB401BF17A9500B22AB3 /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = CE27CB3F1BF17A9500B22AB3 /* UIKit.framework */; };
CE27CB411BF17A9B00B22AB3 /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = CE27CB3F1BF17A9500B22AB3 /* UIKit.framework */; };
CE2EDE901BF3DEEC00B9F26B /* module.modulemap in CopyFiles */ = {isa = PBXBuildFile; fileRef = CE65522C1BEC35BD00DACBC2 /* module.modulemap */; };
CEE532561B03D1A8002CED62 /* libz.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = CEE532551B03D1A8002CED62 /* libz.dylib */; };
CEE7DE671AC1E0C30095C4B7 /* AWSAutoScalingService.h in Headers */ = {isa = PBXBuildFile; fileRef = CEE7DE661AC1E0C30095C4B7 /* AWSAutoScalingService.h */; settings = {ATTRIBUTES = (Public, ); }; };
/* End PBXBuildFile section */
Expand Down Expand Up @@ -61,6 +64,16 @@
);
runOnlyForDeploymentPostprocessing = 0;
};
CE2EDE8F1BF3DEE600B9F26B /* CopyFiles */ = {
isa = PBXCopyFilesBuildPhase;
buildActionMask = 2147483647;
dstPath = "modules/$(PRODUCT_NAME)";
dstSubfolderSpec = 16;
files = (
CE2EDE901BF3DEEC00B9F26B /* module.modulemap in CopyFiles */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXCopyFilesBuildPhase section */

/* Begin PBXFileReference section */
Expand All @@ -81,6 +94,8 @@
BDB73D661B1D3E6D00717559 /* AWSAutoScalingResources.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AWSAutoScalingResources.m; sourceTree = "<group>"; };
BDD8769F1B4B4062009268C7 /* libOCMock.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = libOCMock.a; path = AWSCoreTests/OCMock/libOCMock.a; sourceTree = "<group>"; };
BDF125701B45BF3000DFBFEC /* AWSAutoScalingUnitTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = AWSAutoScalingUnitTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
CE27CB3F1BF17A9500B22AB3 /* UIKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UIKit.framework; path = System/Library/Frameworks/UIKit.framework; sourceTree = SDKROOT; };
CE65522C1BEC35BD00DACBC2 /* module.modulemap */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = "sourcecode.module-map"; path = module.modulemap; sourceTree = "<group>"; };
CEE532551B03D1A8002CED62 /* libz.dylib */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; name = libz.dylib; path = usr/lib/libz.dylib; sourceTree = SDKROOT; };
CEE7DE661AC1E0C30095C4B7 /* AWSAutoScalingService.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AWSAutoScalingService.h; path = ../AWSAutoScaling/AWSAutoScalingService.h; sourceTree = "<group>"; };
/* End PBXFileReference section */
Expand All @@ -97,6 +112,7 @@
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
CE27CB401BF17A9500B22AB3 /* UIKit.framework in Frameworks */,
CEE532561B03D1A8002CED62 /* libz.dylib in Frameworks */,
BD00FF371AB8B683004496EF /* libAWSCore.a in Frameworks */,
BDB5DF281AB37A7A002DD224 /* libAWSAutoScaling.a in Frameworks */,
Expand All @@ -107,6 +123,7 @@
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
CE27CB411BF17A9B00B22AB3 /* UIKit.framework in Frameworks */,
BDD876A01B4B4062009268C7 /* libOCMock.a in Frameworks */,
BDF125681B45BF3000DFBFEC /* libz.dylib in Frameworks */,
BDF125691B45BF3000DFBFEC /* libAWSCore.a in Frameworks */,
Expand Down Expand Up @@ -140,6 +157,7 @@
BDB5DF1E1AB37A79002DD224 /* AWSAutoScaling */ = {
isa = PBXGroup;
children = (
CE65522C1BEC35BD00DACBC2 /* module.modulemap */,
BDB5DF371AB37AA9002DD224 /* AWSAutoScaling.h */,
BDB5DF391AB37AA9002DD224 /* AWSAutoScalingModel.h */,
BDB5DF3A1AB37AA9002DD224 /* AWSAutoScalingModel.m */,
Expand Down Expand Up @@ -175,6 +193,7 @@
FC5D4AEC7530694251AE5CAE /* Frameworks */ = {
isa = PBXGroup;
children = (
CE27CB3F1BF17A9500B22AB3 /* UIKit.framework */,
BDD8769F1B4B4062009268C7 /* libOCMock.a */,
CEE532551B03D1A8002CED62 /* libz.dylib */,
BD00FF361AB8B683004496EF /* libAWSCore.a */,
Expand Down Expand Up @@ -207,6 +226,7 @@
BDB5DF191AB37A79002DD224 /* Frameworks */,
BDB5DF1A1AB37A79002DD224 /* CopyFiles */,
BDB5DF361AB37AA2002DD224 /* Headers */,
CE2EDE8F1BF3DEE600B9F26B /* CopyFiles */,
);
buildRules = (
);
Expand Down Expand Up @@ -362,7 +382,8 @@
);
CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
CLANG_CXX_LIBRARY = "libc++";
CLANG_ENABLE_MODULES = YES;
CLANG_ENABLE_MODULES = NO;
CLANG_ENABLE_MODULE_DEBUGGING = NO;
CLANG_ENABLE_OBJC_ARC = YES;
CLANG_WARN_BOOL_CONVERSION = YES;
CLANG_WARN_CONSTANT_CONVERSION = YES;
Expand Down Expand Up @@ -408,7 +429,8 @@
);
CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
CLANG_CXX_LIBRARY = "libc++";
CLANG_ENABLE_MODULES = YES;
CLANG_ENABLE_MODULES = NO;
CLANG_ENABLE_MODULE_DEBUGGING = NO;
CLANG_ENABLE_OBJC_ARC = YES;
CLANG_WARN_BOOL_CONVERSION = YES;
CLANG_WARN_CONSTANT_CONVERSION = YES;
Expand Down Expand Up @@ -442,13 +464,17 @@
buildSettings = {
CLANG_ENABLE_MODULES = NO;
CLANG_ENABLE_MODULE_DEBUGGING = NO;
DEAD_CODE_STRIPPING = NO;
DEFINES_MODULE = YES;
HEADER_SEARCH_PATHS = (
"$(inherited)",
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include,
);
MODULEMAP_FILE = "$(PRODUCT_NAME:c99extidentifier)/module.modulemap";
OTHER_LDFLAGS = "";
PRODUCT_NAME = AWSAutoScaling;
SKIP_INSTALL = YES;
STRIP_STYLE = "non-global";
};
name = Debug;
};
Expand All @@ -457,13 +483,17 @@
buildSettings = {
CLANG_ENABLE_MODULES = NO;
CLANG_ENABLE_MODULE_DEBUGGING = NO;
DEAD_CODE_STRIPPING = NO;
DEFINES_MODULE = YES;
HEADER_SEARCH_PATHS = (
"$(inherited)",
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include,
);
MODULEMAP_FILE = "$(PRODUCT_NAME:c99extidentifier)/module.modulemap";
OTHER_LDFLAGS = "";
PRODUCT_NAME = AWSAutoScaling;
SKIP_INSTALL = YES;
STRIP_STYLE = "non-global";
};
name = Release;
};
Expand Down
Loading

0 comments on commit 702dcd7

Please sign in to comment.