Last active
April 5, 2023 20:34
-
-
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
This file contains 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
sed -i "" 's/source="$(readlink "${source}")"/source="$(readlink -f "${source}")"/g' "${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-frameworks.sh" |
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
To fix flutter/flutter#123890, add the script to around here in
Build Phases
.This won't be needed after flutter/flutter#124081 hot fix(
v3.7.10
?) is released 🐶