Firebase App Distribution skips iOs distribution, although the build exists #2013
-
If you are looking for help, please confirm the following...
Which mobile framework are you using?Flutter (Dart) Steps to reproduce
Expected resultsProceeding to the distribution step, both Android and iOs build should end up being distributed onto Firebase App Distribution. Actual resultsThe Android app bundle is distributed onto Firebase App Distribution. On the other hand, the iOs build is not distributed, but skipped, as if the build was not found: Skip publishing Ios to Firebase App Distribution: no matching artefacts found.
Skip publishing to Firebase App Distribution: no matching artefacts found. However, the Build step is successful for iOs and Android, and when connecting through SSH, I can confirm there is a Runner.app.zip file in the output folder. ➡️ I don't understand why the distribution is skipped. Can you help me with that please ? 🙏 Build id (optional)64f441145c318d3ddeaaac12 |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
hey @RaphaelAslanian, Firebase App Distribution does not accept zip files; it only accepts actual binaries like .ipa files. To generate the .ipa file, you will need to code-sign your app. You can find detailed instructions on how to code-sign your app in this guide. |
Beta Was this translation helpful? Give feedback.
hey @RaphaelAslanian, Firebase App Distribution does not accept zip files; it only accepts actual binaries like .ipa files. To generate the .ipa file, you will need to code-sign your app. You can find detailed instructions on how to code-sign your app in this guide.