-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathPodfile
More file actions
73 lines (63 loc) · 2.14 KB
/
Copy pathPodfile
File metadata and controls
73 lines (63 loc) · 2.14 KB
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
# Uncomment the next line to define a global platform for your project
platform :ios, '12.2'
inhibit_all_warnings!
def dropbit_pods
pod 'Permission/Camera', git: 'https://github.com/SixFiveSoftware/Permission.git', commit: '659c257'
pod 'Permission/Notifications', git: 'https://github.com/SixFiveSoftware/Permission.git', commit: '659c257'
pod 'Permission/Contacts', git: 'https://github.com/SixFiveSoftware/Permission.git', commit: '659c257'
pod 'Permission/Location', git: 'https://github.com/SixFiveSoftware/Permission.git', commit: '659c257'
pod 'Permission/Photos', git: 'https://github.com/SixFiveSoftware/Permission.git', commit: '659c257'
pod 'SVProgressHUD', '~> 2.2.5'
pod 'ReachabilitySwift', '~> 4.3.1'
pod 'JKSteppedProgressBar', git: 'https://github.com/MitchellMalleo/JKSteppedProgressBar.git', commit: '0519aa3'
pod 'DZNEmptyDataSet', '~> 1.8.1'
pod 'Sheeeeeeeeet', '~> 2.0.2'
pod 'Firebase/Analytics', '~> 6.14.0'
pod 'Firebase/DynamicLinks', '~> 6.14.0'
pod 'OAuthSwift', '~> 2.1.0'
pod 'PMAlertController', '~> 4.0.0'
pod 'SwiftMessages', '~> 7.0.0'
pod 'Gifu', '~> 3.2.0'
pod 'Strongbox', '~> 0.5.3'
end
def shared_pods
pod 'Moya', '~> 13.0.1'
pod 'Charts', '~> 3.4.0'
pod 'Willow', '~> 5.0'
pod 'PhoneNumberKit', git: 'https://github.com/blwinters/PhoneNumberKit.git', commit: '6222471'
end
target 'DropBit' do
# Comment the next line if you're not using Swift and don't want to use dynamic frameworks
use_frameworks!
# Pods for CoinKeeper
pod 'Mixpanel-swift', '~> 2.6.2'
dropbit_pods
shared_pods
target 'DropBitTests' do
inherit! :search_paths
# Pods for testing
end
end
target 'TodayExtension' do
use_frameworks!
shared_pods
end
target 'DropBitUITests' do
# inherit! :search_paths
dropbit_pods
shared_pods
end
target 'DropBitUIDatabaseTests' do
# inherit! :search_paths
dropbit_pods
shared_pods
end
post_install do |installer|
installer.pods_project.targets.each do |target|
unless target.name.include?('DropBit') then
target.build_configurations.each do |config|
config.build_settings['DEBUG_INFORMATION_FORMAT'] = 'DWARF'
end
end
end
end