-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathPodfile
65 lines (57 loc) · 1.98 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
58
59
60
61
62
63
64
65
source 'https://github.com/CocoaPods/Specs.git'
# Uncomment the next line to define a global platform for your project
platform :ios, '13.0'
# Comment the next line if you're not using Swift and don't want to use dynamic frameworks
use_frameworks!
def shared_pods
pod 'Eureka', '~> 5.3'
pod 'MBProgressHUD', '~> 1.2'
pod 'FontBlaster', '~> 5.2'
pod 'UIImage-Resize', '~> 1.0'
pod 'AlignedCollectionViewFlowLayout', '~> 1.1'
pod 'UIImageViewAlignedSwift', '~> 0.8' #:git => 'https://github.com/mirego/UIImageViewAlignedSwift.git'
pod 'ReachabilitySwift', '~> 5.0'
pod 'CrossroadRegex', :git => 'https://github.com/crossroadlabs/Regex.git', tag: '1.2.0'
pod 'LegacyUTType', '~> 0.1'
pod 'GoogleAPIClientForREST/Drive', '~> 3.3'
pod 'LibProofMode',
:git => 'https://gitlab.com/guardianproject/proofmode/libproofmode-ios.git',
:branch => 'main'
pod 'YapDatabase', :git => 'https://github.com/tladesignz/YapDatabase.git' #'~> 4.0'
end
def app_only
# pod 'SwiftPasscodeLock'
pod 'FavIcon', :git => 'https://github.com/tladesignz/FavIcon.git', :branch => 'swift-5'
pod 'SDCAlertView', '~> 12.0'
pod 'TLPhotoPicker', :git => 'https://github.com/tladesignz/TLPhotoPicker.git' # '~> 2.1'
pod 'GoogleSignIn', '~> 7.0'
pod 'OrbotKit', '~> 1.1'
pod 'SelectionList'
pod 'SnapKit', '~> 5'
pod 'SweeterSwift'
pod 'TorManager', '~> 0.3'
pod 'Valet'
end
target 'Save' do
shared_pods
app_only
end
target 'ShareExtension' do
shared_pods
end
target 'Save Screenshots' do
shared_pods
app_only
end
# Fix Xcode 15 compile issues.
post_install do |installer|
installer.pods_project.targets.each do |target|
if target.respond_to?(:name) and !target.name.start_with?("Pods-")
target.build_configurations.each do |config|
if config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'].to_f < 12
config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '12.0'
end
end
end
end
end