forked from aws-amplify/aws-sdk-ios
-
Notifications
You must be signed in to change notification settings - Fork 1
/
AWSAuth.podspec
36 lines (28 loc) · 1.1 KB
/
AWSAuth.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
28
29
30
31
32
33
34
35
36
Pod::Spec.new do |s|
s.name = 'AWSAuth'
s.version = '2.6.13'
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/mobile/sdk'
s.license = 'Apache License, Version 2.0'
s.author = { 'Amazon Web Services' => 'amazonwebservices' }
s.platform = :ios, '9.0'
s.source = { :git => 'https://github.com/aws/aws-sdk-ios.git',
:tag => s.version}
s.requires_arc = true
s.subspec 'Core' do |authcore|
authcore.dependency 'AWSAuthCore', '2.6.13'
end
s.subspec 'FacebookSignIn' do |facebook|
facebook.dependency 'AWSFacebookSignIn', '2.6.13'
end
s.subspec 'GoogleSignIn' do |google|
google.dependency 'AWSGoogleSignIn', '2.6.13'
end
s.subspec 'UserPoolsSignIn' do |up|
up.dependency 'AWSUserPoolsSignIn', '2.6.13'
end
s.subspec 'UI' do |ui|
ui.dependency 'AWSAuthUI', '2.6.13'
end
end