forked from dashpay/dashwallet-ios
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPodfile
46 lines (32 loc) · 1.04 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
target 'dashwallet' do
platform :ios, '11.0'
pod 'DashSync', :git => 'https://github.com/dashevo/dashsync-iOS/', :commit => '98a8285'
pod 'CloudInAppMessaging', '0.1.0'
pod 'KVO-MVVM', '0.5.6'
pod 'UIViewController-KeyboardAdditions', '1.2.1'
pod 'MBProgressHUD', '1.1.0'
pod 'MMSegmentSlider', :git => 'https://github.com/podkovyrin/MMSegmentSlider', :commit => '2d91366'
# Debugging purposes
# pod 'Reveal-SDK', :configurations => ['Debug']
target 'DashWalletTests' do
inherit! :search_paths
end
target 'DashWalletScreenshotsUITests' do
inherit! :search_paths
end
end
target 'TodayExtension' do
platform :ios, '11.0'
pod 'DSDynamicOptions', '0.1.0'
end
target 'WatchApp' do
platform :watchos, '2.0'
end
target 'WatchApp Extension' do
platform :watchos, '2.0'
end
post_install do |installer|
# update info about current DashSync version
# the command runs in the background after 1 sec, when `pod install` updates Podfile.lock
system("(sleep 1; sh ./scripts/dashsync_version.sh) &")
end