-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathPodfile
52 lines (38 loc) · 1.35 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
44
45
46
47
48
49
50
51
# Uncomment the next line to define a global platform for your project
platform :ios, '12.0'
def include_build_tools!
pod 'SwiftFormat/CLI', "~> 0.49.0"
pod 'SwiftLint'
end
target 'AppSyncRealTimeClient' do
# Comment the next line if you don't want to use dynamic frameworks
use_frameworks!
# Pods for AppSyncRealTimeClient
# If you update this dependency version, be sure to update the Cartfile also
pod "Starscream", "4.0.8"
include_build_tools!
target 'AppSyncRealTimeClientTests' do
# Pods for testing
end
end
target "AppSyncRTCSample" do
use_frameworks!
# Note: This only contains build tool Pods for the AppSyncRTCSample. If we
# specify the 'AppSyncRealTimeClient' pod here as well, it can cause
# confusion as xcodebuild attempts to build this target's
# 'AppSyncRealTimeClient' dependency instead of the main target.
# Specify AppSyncRealTimeClient as a dependency by direclty including it in
# AppSyncRTCSample's Xcode build phase.
# pod 'AppSyncRealTimeClient', :path => '.'
include_build_tools!
end
target "HostApp" do
use_frameworks!
# Intentionally not including build tools here--HostApp has no content or
# purpose beyond giving the integration tests a device-like execution
# context.
target "AppSyncRealTimeClientIntegrationTests" do
inherit! :complete
include_build_tools!
end
end