Last active
October 19, 2023 22:14
-
-
Save vanessasoutoc/5f5a4cddd87b4f135533595da60bb278 to your computer and use it in GitHub Desktop.
Error IOS Run Ionic v6 Capacitor DT_TOOLCHAIN_DIR IPHONEOS_DEPLOYMENT_TARGET 12
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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| | |
config.build_settings.delete 'IPHONEOS_DEPLOYMENT_TARGET' | |
end | |
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 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment