skip to Main Content

I get an error when I try to distribute the app to upload it to the App Store:

App Store Connect Operation Error

The filename _****.ipa in the package contains an invalid character(s). The valid characters are: A-Z, a-z, 0-9, dash, period, underscore, but the name cannot start with a dash, period, or underscore

I tried:

  • flutter clean
  • flutter build iOS
  • build folder in Xcode
  • rebuild in Xcode

But I don’t know the reason of this problem.

3

Answers


  1. Chosen as BEST ANSWER

    Finally, I have found a solution, editing the display name in Xcode settings of target not enough, you must edit inside Info.plist file.


  2. for me its because of invalid character of identifier name in Certificates, Identifiers & Profiles. I changed the identifier name & redownload to the provision file, after that everything will be ok.

    Login or Signup to reply.
  3. Make sure that there are no restricted symbols in Bundle name, Bundle display name.

    Both of them can be seen in Info.plist.

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