-
Notifications
You must be signed in to change notification settings - Fork 64
/
Podfile
43 lines (37 loc) · 1.35 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
# Uncomment the next line to define a global platform for your project
platform :ios, '11.0'
target 'Prey' do
# Comment the next line if you don't want to use dynamic frameworks
use_frameworks!
# Pods for Prey
pod 'Firebase/Crashlytics'
pod 'Firebase/Analytics'
target 'PreyTests' do
inherit! :search_paths
# Pods for testing
end
end
target 'PreyNotify' do
# Comment the next line if you don't want to use dynamic frameworks
use_frameworks!
# Pods for PreyNotify
pod 'Firebase/Crashlytics'
pod 'Firebase/Analytics'
end
post_install do |installer|
# fix xcode 15 DT_TOOLCHAIN_DIR - remove after fix oficially - https://github.com/CocoaPods/CocoaPods/issues/12065
installer.aggregate_targets.each do |target|
target.xcconfigs.each do |variant, _xcconfig|
xcconfig_path = target.client_root + target.xcconfig_relative_path(variant)
IO.write(xcconfig_path, IO.read(xcconfig_path).gsub('DT_TOOLCHAIN_DIR', 'TOOLCHAIN_DIR'))
end
end
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
if config.base_configuration_reference.is_a? Xcodeproj::Project::Object::PBXFileReference
xcconfig_path = config.base_configuration_reference.real_path
IO.write(xcconfig_path, IO.read(xcconfig_path).gsub('DT_TOOLCHAIN_DIR', 'TOOLCHAIN_DIR'))
end
end
end
end