This repository has been archived by the owner on Oct 30, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 88
/
Podfile
57 lines (51 loc) · 1.84 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
# Uncomment the next line to define a global platform for your project
platform :ios, '11'
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 'MKColorPicker', :git => 'https://github.com/ccrama/MKColorPicker'
pod 'LicensesViewController', '~> 0.7.0'
pod 'OpalImagePicker'
pod 'MaterialComponents/ActivityIndicator'
pod 'MaterialComponents/ProgressView'
pod 'SwiftEntryKit', :git => 'https://github.com/ccrama/SwiftEntryKit'
pod 'SubtleVolume'
pod 'SDCAlertView', :git => 'https://github.com/ccrama/SDCAlertView'
pod 'MTColorDistance'
pod 'SwiftLinkPreview', '~> 3.0.1'
pod 'DTCoreText', :git => 'https://github.com/Cocoanetics/DTCoreText'
pod 'RLBAlertsPickers', :git => 'https://github.com/ccrama/Alerts-Pickers'
pod 'Alamofire', '~> 4.3'
pod 'SwiftyJSON', :git => 'https://github.com/ccrama/SwiftyJSON.git', :branch => 'hotfix-xcode12'
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|
target.build_configurations.each do |config|
config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '11'
end
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
pod 'SwiftLint'