You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, I'm using the plugin in a Flutter iOS project, and during the archive process I receive this warning:
The archive did not include a dSYM for the WebRTC.framework with the UUIDs [4C4C445C-5555-3144-A123-D3009B21938E]. Ensure that the archive's dSYM folder includes a DWARF file for WebRTC.framework with the expected UUIDs.
This happens when archiving via Xcode or running flutter build ios --release. The app builds and runs fine, but I'm concerned this may affect crash log symbolication.
Is there a way to include the correct dSYM for WebRTC.framework, or could you provide guidance on how to generate it?
Thanks!
The text was updated successfully, but these errors were encountered:
I'm facing the same issue. Getting error "The archive did not include a dSYM for the WebRTC.framework with the UUIDs [4C4C445C-5555-3144-A123-D3009B21938E]" when trying to archive iOS app using WebRTC. Has anyone found a solution?
Yes, same happens to me, needed to manually create that with:
dsymutil WebRTC -o WebRTC.dSYM from the xarchive.
Example:
open terminal
cd into <YOUR_PROJECT>.xcarchive/Products/Applications/Runner.app/Frameworks/WebRTC.framework
run this command: dsymutil WebRTC -o WebRTC.dSYM
That will create the dSYM that you can use / upload.
Hi, I'm using the plugin in a Flutter iOS project, and during the archive process I receive this warning:
The archive did not include a dSYM for the WebRTC.framework with the UUIDs [4C4C445C-5555-3144-A123-D3009B21938E]. Ensure that the archive's dSYM folder includes a DWARF file for WebRTC.framework with the expected UUIDs.
This happens when archiving via Xcode or running
flutter build ios --release
. The app builds and runs fine, but I'm concerned this may affect crash log symbolication.Is there a way to include the correct dSYM for WebRTC.framework, or could you provide guidance on how to generate it?
Thanks!
The text was updated successfully, but these errors were encountered: