Error when publishing to Play Console: Build failed :| Unable to read manifest from Android App Bundle #2528
-
If you are looking for help, please confirm the following...
Which mobile framework are you using?Ionic/Cordova Steps to reproduceVia gradle I create an .apk and an .aab file and output them as artifacts. Expected resultsHow can I see more logs of the failed build during the publishing of the .aab? Actual resultsIn the following step I want to publish the .aab to play console, but I get the error: Build id (optional)66448c42b9a98f11aa7e69aa |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Hi @robbe-tistaert, I can see you are using a brew command in one of your build steps. Brew released an update a few days ago, which by default runs a cleanup and removes some cached files, but in the process it removes some files from our build machine like openSSL library, so this could be the cause of your failed build.
Also let me share an example of the YAML configuration for Ionic apps to use as a reference. You can also follow this guide, which will help you set up your yaml workflow |
Beta Was this translation helpful? Give feedback.
Hi @robbe-tistaert, I can see you are using a brew command in one of your build steps. Brew released an update a few days ago, which by default runs a cleanup and removes some cached files, but in the process it removes some files from our build machine like openSSL library, so this could be the cause of your failed build.
To disable this behaviour try adding
HOMEBREW_NO_INSTALL_CLEANUP
variable before the brew command is invokedAlso let me share an example of the YAML configuration for Ionic apps to use as a reference. You can also follow this guide, which will help you set up your yaml workflow