DEV Community

Victor Corvalan
Victor Corvalan

Posted on • Originally published at Medium on

1

Your Flutter APP has one or more issues

It was the first time that I was submitting a Flutter APP to the App Store… I thought that everything was ready… I’ve tested on several emulators, on real iOS devices… and everything went smoothly and without a problem when I uploaded to the App Store… but after their system finished processing my build, I received an email from Apple…

ITMS-90338: Non-public API usage  — The app references non-public symbols in Frameworks/Flutter.framework/Flutter: _ptrace. If method names in your source code match the private Apple APIs listed above, altering your method names will help prevent this app from being flagged in future submissions. In addition, note that one or more of the above APIs may be located in a static library that was included with your app. If so, they must be removed.

To avoid that issue… you should run

flutter build ios — release

Then in xCode , go to Product->Scheme->Edit Scheme … and make sure that Build Configuration is in RELEASE for ** Archive**

And now you are ready to publish!

Hostinger image

Get n8n VPS hosting 3x cheaper than a cloud solution

Get fast, easy, secure n8n VPS hosting from $4.99/mo at Hostinger. Automate any workflow using a pre-installed n8n application and no-code customization.

Start now

Top comments (0)

AWS Q Developer image

Your AI Code Assistant

Automate your code reviews. Catch bugs before your coworkers. Fix security issues in your code. Built to handle large projects, Amazon Q Developer works alongside you from idea to production code.

Get started free in your IDE

👋 Kindness is contagious

Engage with a wealth of insights in this thoughtful article, valued within the supportive DEV Community. Coders of every background are welcome to join in and add to our collective wisdom.

A sincere "thank you" often brightens someone’s day. Share your gratitude in the comments below!

On DEV, the act of sharing knowledge eases our journey and fortifies our community ties. Found value in this? A quick thank you to the author can make a significant impact.

Okay