Issue
I'm using MapLibre in React Native project, when i do bunx eas build --profile preview --local -p ios
i start getting this error, but no issues when doing in simulator.
I did have MapBox in my other project and that is working fine. But unsure if this related. Or is there a signature being stored in system that i need to manually remove?
Solution
Is an error from Xcode 15, add the next script to your build phases:
if [ "$XCODE_VERSION_MAJOR" = "1500" ]; then
echo "Remove signature files (Xcode 15 workaround)"
rm "$BUILD_DIR/Release-iphoneos/Mapbox.xcframework-ios.signature"
fi
Answered By - ornitorrincco
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.