-
-
Notifications
You must be signed in to change notification settings - Fork 35
/
Podfile
76 lines (58 loc) · 1.4 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
66
67
68
69
70
71
72
73
74
75
76
source 'https://github.com/CocoaPods/Specs.git'
use_frameworks!
def tor
pod 'Tor/GeoIP-NoLZMA',
'~> 408.12'
# :git => 'https://github.com/iCepa/Tor.framework'
# :path => '../Tor.framework'
# pod 'Tor/Onionmasq',
# :podspec => 'https://raw.githubusercontent.com/iCepa/Tor.framework/pure_pod/Arti.podspec'
end
def iptproxy
pod 'IPtProxyUI/AppEx',
'~> 4.6'
# :git => 'https://github.com/tladesignz/IPtProxyUI-ios'
# :path => '../IPtProxyUI'
# pod 'IPtProxy',
# :path => '../IPtProxy-cohosh'
end
target 'Orbot' do
platform :ios, '15.0'
tor
iptproxy
pod 'Eureka', '~> 5.3'
pod 'ProgressHUD', '~> 13.6'
end
target 'Orbot Mac' do
platform :macos, '11.0'
tor
iptproxy
end
target 'TorVPN' do
platform :ios, '15.0'
tor
# iptproxy
pod 'GCDWebServerExtension', :git => 'https://github.com/tladesignz/GCDWebServer.git'
end
target 'StatusWidget' do
platform :ios, '15.0'
tor
iptproxy
end
target 'TorVPN Mac' do
platform :macos, '11.0'
tor
iptproxy
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