forked from aws-amplify/aws-sdk-ios
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAWSCore.podspec
27 lines (23 loc) · 1.07 KB
/
AWSCore.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
Pod::Spec.new do |s|
s.name = 'AWSCore'
s.version = '2.1.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.'
s.homepage = 'http://aws.amazon.com/sdkforios'
s.license = 'Apache License, Version 2.0'
s.author = { 'Amazon Web Services' => 'amazonwebservices' }
s.platform = :ios, '7.0'
s.source = { :git => 'https://github.com/aws/aws-sdk-ios.git',
:tag => s.version}
s.frameworks = 'UIKit', 'Foundation', 'SystemConfiguration'
s.requires_arc = true
s.dependency 'Bolts', '~> 1.1.0'
s.dependency 'Mantle', '~> 1.4'
s.dependency 'XMLDictionary', '~> 1.4'
s.dependency 'UICKeyChainStore', '~> 2.0'
s.dependency 'Reachability', '~> 3.1'
s.dependency 'GZIP', '~> 1.0.3'
s.source_files = 'AWSCore/*.{h,m}', 'AWSCore/**/*.{h,m}'
s.resources = ['AWSCore/**/Resources/*.json']
s.private_header_files = 'AWSCore/MobileAnalytics/Internal/*.h'
end