-
Notifications
You must be signed in to change notification settings - Fork 0
/
AWSPluginsCore.podspec
37 lines (27 loc) · 1.29 KB
/
AWSPluginsCore.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
37
#
# Be sure to run `pod spec lint Amplify.podspec' to ensure this is a
# valid spec and to remove all comments including this before submitting the spec.
#
# To learn more about Podspec attributes see https://guides.cocoapods.org/syntax/podspec.html
# To see working Podspecs in the CocoaPods repo see https://github.com/CocoaPods/Specs/
#
# Version definitions
$AMPLIFY_VERSION = '1.28.0'
$AMPLIFY_RELEASE_TAG = "v#{$AMPLIFY_VERSION}"
$AWS_SDK_VERSION = '2.27.0'
$OPTIMISTIC_AWS_SDK_VERSION = "~> #{$AWS_SDK_VERSION}"
Pod::Spec.new do |s|
s.name = 'AWSPluginsCore'
s.version = $AMPLIFY_VERSION
s.summary = 'Amazon Web Services Amplify for iOS.'
s.description = 'AWS Amplify for iOS provides a declarative library for application development using cloud services'
s.homepage = 'https://github.com/aws-amplify/amplify-ios'
s.license = 'Apache License, Version 2.0'
s.author = { 'Amazon Web Services' => 'amazonwebservices' }
s.source = { :git => 'https://github.com/aws-amplify/amplify-ios.git', :tag => $AMPLIFY_RELEASE_TAG }
s.platform = :ios, '11.0'
s.swift_version = '5.0'
s.source_files = 'AmplifyPlugins/Core/AWSPluginsCore/**/*.swift'
s.dependency 'Amplify', $AMPLIFY_VERSION
s.dependency 'AWSCore', $OPTIMISTIC_AWS_SDK_VERSION
end