skip to Main Content

I’m new to Flutter iOS development. Trying to publish an app on the Apple app store. But after building the archive, when I try to distribute or validate the app, Xcode keeps me showing

The archive did not include a dSYM for the Flutter.framework with the UUIDs [4C4C-5555--****-*****45CD327]. Ensure that the archive’s dSYM folder includes a DWARF file for Flutter.framework with the expected UUIDs.
enter image description here

How can I overcome this?

2

Answers


  1. To retrieve the dSYM file for your Flutter app in Xcode, follow these steps:

    1. Open Xcode:

      • Start Xcode and go to your project.
    2. Create an Archive:

      • Click on Product in the top menu.
      • Select Archive. This will build and archive your app.
    3. Access Archives:

      • Once the archiving process is complete, the Organizer window will open.
      • You’ll see a list of archives for your app. Right-click on the archive
        you want to access.
    4. Show in Finder:

      • From the right-click menu, select Show in Finder. This will open a Finder
        window showing the archived files.
    5. Locate the .xcarchive File:

      • You should see a file with the extension .xcarchive (it’ll have your app
        name). Right-click on this file.
    6. Show Package Contents:

      • Select Show Package Contents from the right-click menu. This will open a new window showing the internal structure of the archive.
    7. Find the dSYMs Folder:

      • Look for a folder named dSYMs inside the package contents. Open this
        folder.
    8. Get the .dSYM File:

      • Inside the dSYMs folder, you’ll find the .dSYM file you need. You can
        copy it from here for your distribution needs
    Login or Signup to reply.
  2. To solve this problem you just need to update the flutter version

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search