This repository was archived by the owner on Aug 11, 2023. It is now read-only.
forked from Haptic-Apps/Slide-iOS
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPodfile
More file actions
65 lines (60 loc) · 1.97 KB
/
Podfile
File metadata and controls
65 lines (60 loc) · 1.97 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
# Uncomment the next line to define a global platform for your project
platform :ios, '9.0'
inhibit_all_warnings!
target 'Slide for Reddit' do
# Comment the next line if you're not using Swift and don't want to use dynamic frameworks
use_frameworks!
# Pods for Slide for Reddit
pod 'reddift', :git => 'https://github.com/ccrama/reddift'
pod 'SDWebImage'
pod 'MKColorPicker', :git => 'https://github.com/ccrama/MKColorPicker'
pod 'BadgeSwift', '~> 8.0'
pod 'LicensesViewController', '~> 0.7.0'
pod 'BiometricAuthentication'
pod 'OpalImagePicker'
pod 'MaterialComponents/ActivityIndicator'
pod 'MaterialComponents/Tabs'
pod 'MaterialComponents/ProgressView'
pod 'SwiftEntryKit', :git => 'https://github.com/ccrama/SwiftEntryKit'
pod 'SubtleVolume'
pod 'SDCAlertView', :git => 'https://github.com/ccrama/SDCAlertView'
pod 'Embassy', '~> 4.1.0'
pod 'MTColorDistance'
pod 'SwiftLinkPreview', '~> 3.0.1'
pod 'DTCoreText', :git => 'https://github.com/Cocoanetics/DTCoreText'
pod 'SwiftSpreadsheet'
pod 'Starscream', '~> 3.1.1'
pod 'RLBAlertsPickers', :git => 'https://github.com/ccrama/Alerts-Pickers'
pod 'SloppySwiper', :git => 'https://github.com/ccrama/SloppySwiper'
pod 'YYText'
pod 'Alamofire', '~> 4.3'
pod 'SwiftyJSON'
pod 'RealmSwift'
pod 'Anchorage', '~>4.3'
pod 'Then'
pod 'SwiftLint'
pod "YoutubePlayer-in-WKWebView", "~> 0.3.0"
pod 'TGPControls'
target 'Slide for RedditTests' do
inherit! :search_paths
# Pods for testing
end
target 'Slide for RedditUITests' do
inherit! :search_paths
# Pods for testing
end
post_install do |installer|
installer.pods_project.targets.each do |target|
if [
'HTMLSpecialCharacters',
'MiniKeychain',
'RLBAlertsPickers',
'SwiftLinkPreview'
].include? target.name
target.build_configurations.each do |config|
config.build_settings['SWIFT_VERSION'] = '4.2'
end
end
end
end
end