This repository was archived by the owner on Mar 18, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPodfile
More file actions
85 lines (70 loc) · 1.9 KB
/
Podfile
File metadata and controls
85 lines (70 loc) · 1.9 KB
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
# Uncomment the next line to define a global platform for your project
# platform :ios, '9.0'
target 'FoundSounds' do
use_frameworks!
platform :ios, '12.1'
inhibit_all_warnings!
pod 'KeychainSwift', '~> 13.0'
pod 'ReachabilitySwift', '~> 4.3.0'
pod 'KMPlaceholderTextView', '~> 1.4.0'
pod 'SwiftLint', '~> 0.27.0'
pod 'DeviceGuru', '~> 5.0.0'
pod 'Apollo', '~> 0.9.4'
# Pods for FoundSounds
target 'FoundSoundsTests' do
inherit! :search_paths
# Pods for testing
pod 'Mockingjay', '~> 2.0.1'
end
target 'FoundSoundsUITests' do
inherit! :search_paths
# Pods for testing
end
end
target 'FoundSounds Today View' do
use_frameworks!
platform :ios, '12.1'
# Pods for FoundSounds Today View
end
target 'FoundSounds TV' do
use_frameworks!
platform :tvos, '12.1'
pod 'Alamofire', '~> 4.7.3'
pod 'SwiftLint', '~> 0.27.0'
pod 'DeviceGuru', '~> 5.0.0'
pod 'ReachabilitySwift', '~> 4.3.0'
target 'FoundSounds TVTests' do
inherit! :search_paths
# Pods for testing
end
target 'FoundSounds TVUITests' do
inherit! :search_paths
# Pods for testing
end
end
target 'FoundSounds Watch' do
use_frameworks!
# Pods for FoundSounds Watch
platform :watchos, '5.1'
pod 'KeychainSwift', '~> 13.0'
pod 'Alamofire', '~> 4.7.3'
pod 'SwiftLint', '~> 0.27.0'
pod 'DeviceGuru', '~> 5.0.0'
end
target 'FoundSounds Watch Extension' do
use_frameworks!
# Pods for FoundSounds Watch Extension
platform :watchos, '5.1'
pod 'KeychainSwift', '~> 13.0'
pod 'Alamofire', '~> 4.7.3'
pod 'SwiftLint', '~> 0.27.0'
pod 'DeviceGuru', '~> 5.0.0'
end
post_install do |installer|
installer.pods_project.targets.each do |target|
target.build_configurations.each do |configuration|
configuration.build_settings['CLANG_ENABLE_CODE_COVERAGE'] = 'NO'
configuration.build_settings['SWIFT_EXEC'] = '$(SRCROOT)/SWIFT_EXEC-no-coverage'
end
end
end