-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPodfile
43 lines (33 loc) · 1.05 KB
/
Podfile
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
38
39
40
41
42
43
platform :ios, "9.0"
# Comment the next line if you're not using Swift and don't want to use dynamic frameworks
use_frameworks!
AWS_SDK_VERSION = "2.11.0"
target "AWSAppSync" do
pod "AWSCore", "~> #{AWS_SDK_VERSION}"
pod "SQLite.swift", "0.11.6"
# We are pinning to this version as 4.3.1 updates XCode requirements to Xcode
# 10.2 and Swift 5. We currently intend to keep Xcode 10+ and Swift 4+ as
# minimum requirement for development.
pod "ReachabilitySwift", "4.3.0"
end
target "AWSAppSyncTestCommon" do
pod "AWSCore", "~> #{AWS_SDK_VERSION}"
pod "AWSS3", "~> #{AWS_SDK_VERSION}"
pod "ReachabilitySwift", "4.3.0"
# We directly access a database connection to verify certain initialization
# setups
pod "SQLite.swift", "0.11.6"
end
target "AWSAppSyncTestApp" do
pod "AWSS3", "~> #{AWS_SDK_VERSION}"
pod "AWSMobileClient", "~> #{AWS_SDK_VERSION}"
end
target "AWSAppSyncTestHostApp" do
end
target "AWSAppSyncUnitTests" do
end
target "AWSAppSyncIntegrationTests" do
end
target "ApolloTests" do
pod "AWSCore", "~> #{AWS_SDK_VERSION}"
end