aws-amplify / aws-sdk-ios

AWS SDK for iOS. For more information, see our web site:
https://aws-amplify.github.io/docs
Other
1.68k stars 884 forks source link

Only include subset of AWS pods? #245

Closed rpitting closed 9 years ago

rpitting commented 9 years ago

In the getting-started-section, you specify the following list for the Podfile:

pod 'AWSCore'
pod 'AWSAutoScaling'
pod 'AWSCloudWatch'
pod 'AWSDynamoDB'
pod 'AWSEC2'
pod 'AWSElasticLoadBalancing'
pod 'AWSKinesis'
pod 'AWSLambda'
pod 'AWSMachineLearning'
pod 'AWSMobileAnalytics'
pod 'AWSS3'
pod 'AWSSES'
pod 'AWSSimpleDB'
pod 'AWSSNS'
pod 'AWSSQS'
pod 'AWSCognito'

Is it really necessary to include all pods? For using the SNS service, can I just use that pod?

yosuke-matsuda commented 9 years ago

If you want to use Amazon SNS, you can add

pod 'AWSSNS'

to your Podfile and not others.

rpitting commented 9 years ago

Thanks!