DT_TOOLCHAIN_DIR cannot be used to evaluate LIBRARY_SEARCH_PATHS, use TOOLCHAIN_DIR instead error iOS
Problem:
DT_TOOLCHAIN_DIR cannot be used to evaluate LIBRARY_SEARCH_PATHS, use TOOLCHAIN_DIR instead
target 'myapp' do
# Comment the next line if you don't want to use dynamic frameworks
use_frameworks!
pod 'RxSwift'
pod 'RxCocoa'
pod 'RxDataSources'
# Pods for NuCal
target 'myappTests' do
inherit! :search_paths
# Pods for testing
end
target 'myappUITests' do
# Pods for testing
end
post_install do |installer|
installer.pods_project.
target.build_configurations.
config.build_settings['
end
end
# fix xcode 15 DT_TOOLCHAIN_DIR - remove after fix oficially - https://github.com/CocoaPods/
installer.aggregate_targets.
target.xcconfigs.each do |variant, xcconfig|
xcconfig_path = target.client_root + target.xcconfig_relative_path(
IO.write(xcconfig_path, IO.read(xcconfig_path).gsub("
end
end
installer.pods_project.
target.build_configurations.
if config.base_configuration_
xcconfig_path = config.base_configuration_
IO.write(xcconfig_path, IO.read(xcconfig_path).gsub("
end
end
end
end
end
Comments
Post a Comment