forked from guardianproject/orbot-apple
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Podfile
68 lines (52 loc) · 1.21 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
source 'https://github.com/CocoaPods/Specs.git'
use_frameworks!
def tor
pod 'Tor/GeoIP',
'~> 407.13'
# :path => '../Tor.framework'
end
def iptproxy
pod 'IPtProxyUI/AppEx',
'~> 3.0.1'
# :git => 'https://github.com/tladesignz/IPtProxyUI-ios'
# :path => '../IPtProxyUI-ios'
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 14 code signing issues with bundles.
# See https://github.com/CocoaPods/CocoaPods/issues/8891#issuecomment-1249151085
post_install do |installer|
installer.pods_project.targets.each do |target|
if target.respond_to?(:product_type) and target.product_type == "com.apple.product-type.bundle"
target.build_configurations.each do |config|
config.build_settings['CODE_SIGNING_ALLOWED'] = 'NO'
end
end
end
end