skip to Main Content

I am getting the error of "Error (Xcode): Warning: The generated assembly code contains unobfuscated DWARF debugging information." when building Flutter with

flutter build ipa --obfuscate --split-debug-info=<file-path>

command.

It doesn’t throw and builds if I just type

flutter build ipa .

2

Answers


  1. think you can only do obfuscate for Android build?

    Login or Signup to reply.
  2. Try using this command. It works for me.

    flutter build ipa --target=lib/main.dart --release --obfuscate --split-debug-info=split_debug
    

    Here split_debug is path. Version is release, and targets main.dart file for making ipa

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