Disable Mobile builder

Is there any way to disable mobile? I have been testing it, but its not fully ready for primetime on my application yet. I tried removing the app store credentials in settings and deleting all the relevant views, but now there is a mandatory update_app view that I cant delete.

It’s blocking my regular web builds as the mobile build is now hanging.

Add this feature flag to every editor page: &mobile_deploys=false

this will only deploy to web app.

1 Like

This seemed to work. Is there any way to kill the existing build. It’s been going on for over 12 hours now.

Not afaik – @nick.carroll ?

Is this whats required to now push just the web-app live?
I just want to deploy the web app and keep building the mobile one… really confused here.

1 Like

This is the exact issue that I had. Its been 3 days now that the regular deploy pipeline has been blocked.

Use this: &mobile_deploys=false feature flag to deploy to web

3 Likes

Hi everyone, sorry for the issues deploying! A few things…

  • as some users have pointed out, adding &mobile_deploys=false to your editor url will turn off mobile deploying so you can deploy a web only change
  • we do our best to handle errors that come up during the build process, but every now and then, new unhandled errors popup that leave the mobile deploys in a frozen state. We are making a few updates to get around these issues in order of timeline
    • We are deploying a patch that will clear all stuck builds
    • We are adding a timeout fail safe where any in progress build will automatically be set to failed after one hour, and OTA after 10 minutes. the normal build times are usually between 20-40 minutes.
    • We are adding the ability to choose between a web only or mobile only deploy in the deploy modal

Thanks again for your patience, and sorry for any disruptions

7 Likes

Thanks, this worked.

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.