Can't publish my app

I can’t publish my app for 2-3 days. When I click “publish”, it shows this “Publishing is temporarily disabled while we work on system updates. Check back soon.” Does anybody know how to deal with it ? Thank you.

7 Likes

Yeah bro, im getting this too, u find a fix/workaround? or we gotta wait for google?

1 Like

Yep I can’t either. No idea why yet. Maybe we’ll know soon

How many published project do you have?

Having the same issue…not with all projects but definitly with the one I need to work on the most!

Yeah I am also having the same problem. Is there a another way to publish the app.

Yes, I am also notable to publish with error.

Publishing is temporarily disabled while we work on system updates. Check back soon.

1 Like

I have been facing the same issue since 11 March 2026. How long do I need to wait to get it fixed.

Any updates? I cannot get anything out of Google support.

The issue is with the Gemini API. I removed the ai features in my app and then it allowed me to publish. It appears to me they are migrating from Gemini 3 to Gemini 3.1. I assume the api key is for Gemini 3.

Found a fix.
Dependency: Re-installed the @google/genai package.

  1. Environment: Re-created /.env.example with the GEMINI_API_KEY documentation.

  2. Configuration: Updated vite.config.ts to define process.env.GEMINI_API_KEY for access within the application.

  3. Service: Created src/services/geminiService.ts with:

    • Model Validation: Configured to use gemini-3.1-pro-preview for complex tasks.

    • API Key Validation: Added a check to ensure GEMINI_API_KEY is present.

    • Error Logging: Implemented a try-catch block with structured console logging for API errors.