-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPodfile
75 lines (51 loc) · 1.24 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
def base_pods
pod 'SwiftyJSON'
end
def testing_pods
pod 'Nimble', '~> 7.0.3'
pod 'Quick', '~> 1.2.0'
end
target 'accounts.ios' do
platform :ios, '11.0'
source 'https://github.com/CocoaPods/Specs.git'
use_frameworks!
base_pods
pod 'Reveal-SDK', :configurations => ['Debug']
end
target 'accounts.ios.todayextension' do
platform :ios, '11.0'
source 'https://github.com/CocoaPods/Specs.git'
use_frameworks!
base_pods
end
target 'accounts.ios WatchKit Extension' do
platform :watchos, '4.0'
source 'https://github.com/CocoaPods/Specs.git'
use_frameworks!
base_pods
end
target 'accounts.iosTests' do
platform :ios, '11.0'
source 'https://github.com/CocoaPods/Specs.git'
use_frameworks!
testing_pods
end
target 'AccountKitTests' do
platform :ios, '11.0'
source 'https://github.com/CocoaPods/Specs.git'
use_frameworks!
testing_pods
base_pods
end
target 'AccountKit' do
platform :ios, '11.0'
source 'https://github.com/CocoaPods/Specs.git'
use_frameworks!
base_pods
end
target 'AccountKit.WatchOS' do
platform :watchos, '4.0'
source 'https://github.com/CocoaPods/Specs.git'
use_frameworks!
base_pods
end