-
Notifications
You must be signed in to change notification settings - Fork 3
/
Podfile
executable file
·86 lines (67 loc) · 1.47 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
77
78
79
80
81
82
83
84
85
86
# frozen_string_literal: true
source 'https://github.com/CocoaPods/Specs.git'
inhibit_all_warnings!
def ios_pods
pod 'AutoCoding'
end
def tvos_pods
pod 'TvOSTextViewer'
end
abstract_target 'Play SRG' do
abstract_target 'iOS' do
platform :ios, '14.1'
target 'Play SRF' do
ios_pods
end
target 'Play RSI' do
ios_pods
end
target 'Play RTS' do
ios_pods
end
target 'Play RTR' do
ios_pods
end
target 'Play SWI' do
ios_pods
end
project 'PlaySRG.xcodeproj',
'Debug' => :debug,
'Nightly' => :release,
'Beta' => :release,
'AppStore' => :release
end
abstract_target 'tvOS' do
platform :tvos, '14.0'
target 'Play SRF TV' do
tvos_pods
end
target 'Play RSI TV' do
tvos_pods
end
target 'Play RTS TV' do
tvos_pods
end
target 'Play RTR TV' do
tvos_pods
end
target 'Play SWI TV' do
tvos_pods
end
project 'PlaySRG.xcodeproj',
'Debug' => :debug,
'Nightly' => :release,
'Beta' => :release,
'AppStore' => :release
end
end
post_install do |installer|
installer.generated_projects.each do |project|
project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings.delete 'IPHONEOS_DEPLOYMENT_TARGET'
config.build_settings.delete 'TVOS_DEPLOYMENT_TARGET'
end
end
end
end