forked from awslabs/aws-mobile-appsync-sdk-ios
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathPodfile
40 lines (30 loc) · 808 Bytes
/
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
platform :ios, "12.0"
use_frameworks!
inhibit_all_warnings!
AWS_SDK_VERSION = "2.36.0"
target "AWSAppSync" do
pod "AWSCore", "~> #{AWS_SDK_VERSION}"
pod "SQLite.swift", "~> 0.12.2"
pod "AppSyncRealTimeClient", "~> 3.2.0"
pod "SwiftLint"
end
target "AWSAppSyncTestCommon" do
pod "AWSS3", "~> #{AWS_SDK_VERSION}"
# We directly access a database connection to verify certain initialization
# setups
pod "SQLite.swift", "~> 0.12.2"
pod "AppSyncRealTimeClient", "~> 3.2.0"
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