forked from breadwallet/breadwallet-ios
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPodfile
48 lines (37 loc) · 960 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
41
42
43
44
45
46
47
# Uncomment the next line to define a global platform for your project
source 'https://github.com/CocoaPods/Specs.git'
workspace 'loafwallet.xcworkspace'
project 'loafwallet.xcodeproj', 'Development' => :debug,'Release' => :release
use_frameworks!
#Shared Cocopods
def shared_pods
#Add when they debug for iOS v12: pod 'Mixpanel-swift' | KCW Oct 4,2018
pod 'Crashlytics', '~> 3.10'
pod 'Alamofire', '~> 4.7'
end
def shared_watchOS_pods
end
target 'loafwallet' do
platform :ios, '10.0'
shared_pods
end
target 'loafwallet WatchKit App' do
platform :watchos, '4.0'
inherit! :search_paths
shared_watchOS_pods
end
target 'loafwallet WatchKit Extension' do
platform :watchos, '4.0'
inherit! :search_paths
shared_watchOS_pods
end
target 'loafwallet-dev' do
platform :ios, '10.0'
shared_pods
target 'loafwalletTests' do
inherit! :search_paths
end
target 'loafwalletUITests' do
inherit! :search_paths
end
end