Flutter macOS app failed publishing to App Store Connect #1498
-
I have a Flutter app that successfully publishes when building for ios. I can also publish it successfully when building from my mac. I suspect this happens because CodeMagic builds the app with root privileges. Any way to disable that? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
Hi @korenminchev, looks like it is about the incorrect *.frag shader file permissions: flutter/flutter#108737
Let me know if it helps. |
Beta Was this translation helpful? Give feedback.
Hi @korenminchev, looks like it is about the incorrect *.frag shader file permissions: flutter/flutter#108737
In order to tackle it, you can either in Xcode custom script or in Codemagic post-build (after the build command is complete) script can add the following bits:
Let me know if it helps.