Skip to content

Instantly share code, notes, and snippets.

@mono0926
Last active April 5, 2023 20:34
Show Gist options
  • Save mono0926/37fc21f06ee42103d5bd4a57c6820031 to your computer and use it in GitHub Desktop.
Save mono0926/37fc21f06ee42103d5bd4a57c6820031 to your computer and use it in GitHub Desktop.
Xcode 14.3 x Flutter 3.7.9 x CocoaPods 1.12.0 Workaround
sed -i "" 's/source="$(readlink "${source}")"/source="$(readlink -f "${source}")"/g' "${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-frameworks.sh"
@mono0926
Copy link
Author

mono0926 commented Apr 4, 2023

To fix flutter/flutter#123890, add the script to around here in Build Phases.

image

This won't be needed after flutter/flutter#124081 hot fix(v3.7.10?) is released 🐶

@mono0926
Copy link
Author

mono0926 commented Apr 5, 2023

This won't be needed after flutter/flutter#124081 hot fix(v3.7.10?) is released 🐶

v3.7.10 is released, so this workaround isn’t needed anymore 👌
https://github.com/flutter/flutter/releases/tag/3.7.10

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment