forked from awslabs/aws-mobile-appsync-sdk-ios
-
Notifications
You must be signed in to change notification settings - Fork 0
/
AWSAppSync.podspec
21 lines (19 loc) · 1017 Bytes
/
AWSAppSync.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
Pod::Spec.new do |s|
s.name = 'AWSAppSync'
s.version = '3.1.17'
s.author = 'AWS'
s.homepage = 'http://aws.amazon.com/mobile/sdk'
s.license = { :type => 'Amazon Software License', :file => 'LICENSE' }
s.summary = "iOS client to access AWSAppSync backend."
s.source = { :git => 'https://github.com/awslabs/aws-mobile-appsync-sdk-ios.git',
:tag => s.version }
s.requires_arc = true
s.ios.deployment_target = '9.0'
s.swift_version = '5.1'
s.dependency 'AWSCore', '~> 2.23.0'
s.dependency 'SQLite.swift', '~> 0.12.2'
s.dependency 'ReachabilitySwift', '5.0.0'
s.dependency 'AppSyncRealTimeClient', '~> 1.4'
s.source_files = 'AWSAppSyncClient/AWSAppSync.h', 'AWSAppSyncClient/*.swift', 'AWSAppSyncClient/Internal/**/*.{h,m,swift}', 'AWSAppSyncClient/Apollo/Sources/Apollo/*.swift'
s.public_header_files = ['AWSAppSyncClient/AWSAppSync.h', 'AWSAppSyncClient/AWSAppSync-Swift.h', 'AWSAppSyncClient/Internal/AppSyncLogHelper.h']
end