Skip to main content
🔄 Google AI Studio → Android

Turn Your Google AI Studio App Into a Real Android App

Google's own Build mode documentation says it plainly: “By default your app is private.” That one line is why wrapping an AI Studio link gives your users a sign-in screen. Deploy the app first, paste the public URL here, and get a signed Android APK in about 60 seconds.

Written by the Free App Maker team at My Mind Studio · Last verified 26 August 2026

A Google AI Studio app becomes an Android app in two moves. First deploy it — Google's Build mode docs say you can deploy to Cloud Run from AI Studio, which gives your app a public URL. Then paste that URL into Free App Maker for a signed APK in about 60 seconds. Building is free; downloading the signed APK is a one-time unlock, priced before checkout.

Source for both quoted lines: Google AI for Developers — Build apps in Google AI Studio, checked 26 Aug 2026.

✓ Free to build, no account ✓ Signed APK in ~60 seconds ✓ One requirement: a public URL
Remix ai.studio · sign-in public URL My Gemini App Ask Anything APK ✓
APK ready in ~60 seconds
Signed release APK
Free to start, no account
Works with any public URL
No coding, no Android Studio

The Gemini-powered workspace where you build apps by describing them

Google AI Studio is Google's browser-based environment for building with Gemini. Its Build mode — Google's documentation puts it at aistudio.google.com/apps — lets you describe what you want, iterate with the model, and end up with a working app without setting up a local development environment.

Google documents three ways out of that workspace, and they lead to very different places. You can deploy to Cloud Run, which the docs say "gives your app a public URL". You can export the generated code as a ZIP file and host it yourself. Or, for a native build, Google states that "for Android apps, AI Studio generates a Kotlin and Jetpack Compose project" — a codebase you compile in Android Studio.

This page covers the web route: deploy the app to a public URL, then wrap that URL as a signed Android APK with Free App Maker. It also covers the mistake that costs AI Studio builders the most time — and the host settings that quietly cause it.

Source: Google AI for Developers — Build apps in Google AI Studio, checked 26 Aug 2026.

~60s
Typical build time
3
Documented routes out
1
Public URL needed

Why wrapping your AI Studio link produces a Google sign-in screen

This is the reason most AI Studio conversions disappoint, and it is not a build error. Google's Build mode documentation states it directly: "By default your app is private." A private workspace address is not a website your users can open.

We checked what that looks like from outside: on 26 August 2026, an ordinary signed-out request to ai.studio/apps redirected to accounts.google.com. Wrap that address in an APK and the app faithfully renders what the URL serves — a sign-in page. Nothing is wrong with the build; the address is simply not public. (That redirect is our own check, not a Google statement.)

Sharing the workspace link instead has its own trade-offs that Google names in the same document: "Users you share your app with can see its code and fork it for their own purposes", and "When sharing your apps with others, API calls count toward your usage limits."

The fix is a public address: deploy from AI Studio to Cloud Run, or export the ZIP and host it yourself. Then confirm the URL opens in a private/incognito window with no sign-in prompt. That URL — not the workspace link — is what you paste into Free App Maker.

Source for the three quoted lines: Google AI for Developers — Build apps in Google AI Studio, checked 26 Aug 2026. Google's product behaviour can change — check the current page before relying on it.

Google AI Studio to Android APK in 3 Steps

Deploy first, verify it is public, then convert. The middle step — the incognito test — is the one that saves you from the sign-in-screen trap.

Deploy your app to a public URL

Google documents the short route: "You can deploy your app to Cloud Run from AI Studio, which gives your app a public URL." The alternative is to "export the generated code as a ZIP file" and host it yourself. If you take the ZIP route, mind Google's own warning — run it elsewhere and "you will need to set up the GEMINI_API_KEY environment variable", or the Gemini parts of your app will fail on the new host.

Test the URL in a private window

The single requirement: the URL opens with no sign-in prompt. Your own browser session hides host-level gates from you, so check in a private/incognito window. Two documented gates catch people here — Vercel says that with Vercel Authentication on, "Users attempting to access the deployment will encounter a Vercel login redirect", and Netlify states that on new credit-based pricing accounts "new projects start private by default and become publicly accessible only when you choose to publish."

Paste the URL and build your APK

Head to freeappmaker.org and paste the public URL. Set the app name that appears under the icon, enter your email, and optionally upload a 1024×1024 PNG icon — we generate the Android density variants from it. Your signed APK is typically ready in about 60 seconds. Building and previewing are free; downloading the signed APK is a one-time unlock, priced by country and shown before checkout.

Sources for the quoted lines above: Google AI for Developers — Build apps in Google AI Studio, Vercel Docs — Vercel Authentication, and Netlify Pricing, all checked 26 Aug 2026. The ~60-second figure is our own average build time, measured on the Free App Maker build pipeline.

Deployed your AI Studio app to a public URL? You're one paste away.

Convert It Free — About 60 Seconds →

Who Converts AI Studio Apps to Android?

AI Studio makes building fast. An installable Android app makes what you built feel real — to users, clients, students, and yourself.

Builders Shipping Their First Gemini App

You described an idea to AI Studio and it became a working app — a study helper, a recipe assistant, a niche tool. Sharing a URL is fine; handing someone an installable Android app is better. Once your app is deployed publicly, the APK takes about a minute, and the people you share it with tap an icon instead of hunting for a link.

Freelancers & Client Demos

You prototyped a client concept in AI Studio in an afternoon. Deploy it, wrap it as an APK, and the next meeting starts with the client tapping through the idea on their own phone. A signed APK on a real device lands very differently from a browser tab on a shared screen — and it costs you a public deployment plus one paste.

Students & Hackathon Teams

AI Studio lets you build the project fast; the APK is how you present it. Judges and interviewers can install your app and try it on their own devices instead of watching a demo. Just remember the deployment rule — a workspace link will show them a Google sign-in, while a deployed URL shows them your work.

Teams Piloting Internal Tools

An internal helper built in AI Studio — a form assistant, a knowledge lookup, a calculator for your workflow — is easier to roll out as an APK your colleagues install than as a URL they bookmark. Deploy it to a host your team can reach without a Google sign-in, convert it, and share the APK file directly.

URLs That Convert Cleanly — and URLs That Don't

Free App Maker wraps whatever your URL serves. The whole game is pasting the right kind of URL — here is the honest checklist from our support work.

✅ Paste these

  • Your Cloud Run URL from AI Studio's deploy step — Google's docs say deploying to Cloud Run "gives your app a public URL"
  • A Vercel, Netlify, or Cloudflare Pages URL serving your exported app code
  • A GitHub Pages URL, if your exported app is fully static — GitHub describes Pages as "a static site hosting service that takes HTML, CSS, and JavaScript files straight from a repository"
  • A custom domain pointed at any of the hosts above
  • Any URL that opens your app in a private/incognito window with no sign-in prompt
  • A URL you plan to keep — the APK loads it live, so updates you redeploy appear in the app

⚠️ Don't paste these

  • AI Studio workspace links — Google's docs state "By default your app is private", so the APK shows a sign-in page rather than your app
  • A Vercel deployment with Vercel Authentication enabled — Vercel documents that visitors "will encounter a Vercel login redirect"
  • A Netlify project you have not published yet — Netlify states new projects on credit-based accounts "start private by default and become publicly accessible only when you choose to publish"
  • Any URL that asks for a sign-in in an incognito window — if you hit a login wall, so will your users
  • Localhost or LAN addresses — the APK loads the URL over the internet, so it needs a publicly reachable host

Not sure about your URL? Run it through our free WebView Compatibility Checker first.

Sources: Google AI for Developers — Build apps in Google AI Studio, GitHub Docs — What is GitHub Pages?, Vercel Docs — Vercel Authentication and Netlify Pricing, all checked 26 Aug 2026.

Getting an AI Studio App Onto Android — the Real Options

AI Studio builders choose between three genuine routes, not one. Two of them are Google's own. Here is what each actually costs and requires, with every figure taken from the vendor's own documentation.

Route Free App Maker ✓ AI Studio's own Android output Capacitor (DIY wrapper)
What you start from Your deployed public URL Google states AI Studio "generates a Kotlin and Jetpack Compose project" Your exported web code plus a Node project
Android Studio required ✗ No — nothing to install ✓ Required to build and sign the project ✓ Required — Capacitor's docs say Android apps "are configured and managed through Android Studio"
Licence / tool cost Free to build — one-time unlock to download, price shown first Android Studio is free; your time is the cost Open source; your time is the cost
Reaches native device APIs ✗ No — a WebView shows web pages ✓ Yes — native Kotlin ✓ Via plugins
Updates when you redeploy ✓ Yes — loads your live URL ✗ No — rebuild and redistribute Depends on how you configure it
Time to a first installable file ~60 seconds after deploying A toolchain install, then a build A toolchain install, then a build
Route to a Google Play listing Same for all three: Android's docs state that "From August 2021, new apps are required to publish with the Android App Bundle on Google Play", and Play Console help states "There is a US$25 one-time registration fee" (as of 26 Aug 2026). Our download is a signed APK for direct install; the AAB is included in the Play Store Pack, with the graphics, privacy policy and form answers.

Figures checked 26 August 2026 against each vendor's own documentation: Google AI for Developers — Build apps in Google AI Studio, Capacitor Docs — Android, Android Developers — About Android App Bundles, and Play Console Help — Get started with Play Console. Vendor terms change; check the current pages before relying on them.

Where to deploy first — free-tier limits, as of 26 August 2026

Any host that serves your app publicly works with Free App Maker. These are the common choices, with the free-tier figures each vendor publishes today.

Consideration Google Cloud Run ✓ Vercel Netlify Cloudflare Pages GitHub Pages
Path from AI Studio Deploy directly from AI Studio Export the generated code as a ZIP, then push or import it
Published free-tier allowance Request-based billing: "2 million requests free per month", 180,000 vCPU-seconds and 360,000 GiB-seconds Hobby plan is free; "First 1,000,000" function invocations Free plan at $0 with a "300 credit limit / month" Free plan: 500 builds per month, 1 build at a time Available "in public repositories with GitHub Free"
Commercial use on the free tier Allowed under Cloud Run's normal terms ✗ Restricted — Vercel's docs say Hobby "restricts users to non-commercial, personal use only" Paid tiers start at $9/month (Personal) Not restricted on the Free plan Public repositories on GitHub Free
Server-side code ✓ Yes ✓ Functions ✓ Functions ✓ Functions ✗ Static files only — GitHub calls Pages "a static site hosting service"
The gate that catches people Vercel Authentication triggers "a Vercel login redirect" New projects "start private by default" Files must be committed to a repo
Works with Free App Maker✓ Yes✓ Yes✓ Yes✓ Yes✓ Yes
Before you convertWhichever host you choose: open the URL in a private/incognito window and confirm your app loads with no sign-in prompt — then paste it into Free App Maker.

Free-tier figures and plan prices checked 26 August 2026 against each vendor's own pricing or limits page: Google Cloud Run pricing, Vercel — Hobby plan, Netlify pricing (Free $0, Personal $9/month, Pro $20/month, as of August 2026), Cloudflare Pages limits, and GitHub Docs — What is GitHub Pages?. Free tiers and prices change often — check each vendor's current page before you commit.

6 Reasons AI Studio Builders Use Free App Maker

Once your app is deployed, you can convert a website to APK from the homepage in about a minute.

Once your app has a public URL, this is the shortest honest path from that URL to an installable Android app.

Redeploy once, update everywhere

The APK loads your deployed URL at runtime. Keep iterating in AI Studio, redeploy to the same public URL, and the Android app shows the new version the next time users open it — no rebuild, no re-download, no update prompt. The APK you shipped keeps pointing at your latest work.

Distribute the app, not your Build mode project

Google notes that when you share an AI Studio app, "Users you share your app with can see its code and fork it for their own purposes." An APK pointing at your deployment is a different hand-off: people install an app rather than opening your project.

About 60 seconds, start to APK

Paste the URL, verify your email, download the signed APK — typically about 60 seconds of build time. No Android Studio install, no Gradle configuration, no Java or Kotlin. The slow part of your day was already done when you deployed the app; this part is the fast one.

The incognito test doubles as QA

The same check that makes your URL convertible — opening it in a private window with no sign-in — is close to the experience your users get. Android's own docs describe a WebView plainly: "All WebView does, by default, is show a web page." So if the private window shows your app, the APK should too.

No lock-in — your APK, your hosting

The APK is yours to distribute — your website, a GitHub release, a direct share. And you are not married to your first host: if you move from Cloud Run to Vercel or anywhere else later, rebuild the APK with the new URL in about a minute. Your app, your address, your call.

One icon in, every density out

Upload a single 1024×1024 PNG and we generate the Android density variants. Android's guidance is a 3:4:6:8:12:16 ratio from a 48×48 baseline — 48 (mdpi), 72 (hdpi), 96 (xhdpi), 144 (xxhdpi), 192 (xxxhdpi) — which is fiddly by hand and automatic here.

Sources for the quoted lines in these cards: Google AI for Developers — Build apps in Google AI Studio, Android Developers — Build web apps in WebView, and Android Developers — Support different pixel densities, all checked 26 Aug 2026.

The Honest Limits, Before You Build

A WebView wrapper is a real Android app around your live site. That framing sets four limits worth knowing up front.

Your site has to stay reachable

The app loads your deployed URL over the internet each time it opens. If the deployment is deleted, the host suspends it, or you flip it back to private, the app has nothing to load. It also needs a connection — there is no built-in offline copy of your pages.

Gemini calls land on your quota

Your app's model calls run against your project's key on your deployment, not on each user's account. Google's documentation states that "Rate limits are applied per project, not per API key", and that "Your usage is evaluated against each limit, and exceeding any of them will trigger a rate limit error". Check your tier before you distribute widely.

Native-only device APIs are out of reach

Android's docs describe a WebView as a view that shows web pages and note it "doesn't include the features of a fully developed web browser". What a web page cannot do in a mobile browser — Bluetooth, NFC, background services — a WebView app cannot do either. If you need those, AI Studio's Kotlin output or a native build is the right route.

Payment and OAuth redirects need testing

Card flows, 3-D Secure steps, and third-party sign-in all bounce through redirects, and redirect behaviour inside a WebView is worth checking rather than assuming. If your AI Studio app has a checkout or a login, run it end to end on a real Android device before you share the APK.

Sources: Google AI for Developers — Rate limits and Android Developers — Build web apps in WebView, both checked 26 Aug 2026.

Frequently Asked Questions

Everything we get asked about converting a Google AI Studio app to an Android APK — including the sign-in-screen mystery, solved.

Can I paste my ai.studio/apps/... link directly into Free App Maker?
No — and this is the single most common reason AI Studio conversions fail. An ai.studio/apps/... link is Google AI Studio's workspace page, not a standalone website. It sits behind a Google sign-in and carries the studio's own interface — the "Remix" button, the Gemini panel. Deploy your app to a public URL first (see the next question), then paste that URL instead.
Why does my Android app open a Google sign-in screen instead of my app?
Because the APK is loading your AI Studio workspace link, and that address is not public. Nothing is wrong with your build — the APK is faithfully showing what the URL serves, which for a workspace link is Google's login screen. Export or deploy the app to a public host, confirm the new URL opens in a private/incognito window with no sign-in, and rebuild the APK with that URL.
How do I get a public URL for my AI Studio app?
Two paths out of AI Studio: download/export your app's code, or use the built-in "Deploy to Cloud Run" button. Then host the app anywhere that serves the page publicly — Cloud Run, Vercel, Netlify, Cloudflare Pages, and GitHub Pages all work and all have free tiers (GitHub Pages suits fully static apps). The one requirement: the URL opens without a Google sign-in. Test it in a private/incognito window before you convert.
My APK worked earlier but now shows an error. What happened?
You most likely wrapped a temporary preview URL. Preview hosts — addresses that look like ais-pre-....run.app — expire, so the app works today and breaks later. It is a sneaky failure because everything tests fine on day one. Rebuild the APK with your permanent deployment URL, and the problem does not come back.
Does the Android app update when I change my app in AI Studio?
The APK loads your deployed URL at runtime, so it always shows whatever that URL currently serves. Note the distinction: editing in the AI Studio workspace does not change your deployed copy by itself. Redeploy your changes to the same public URL, and the Android app shows the new version the next time it opens — no new APK, no reinstall for your users.
Is converting an AI Studio app to Android free?
Free App Maker is free to start and needs no account. The flow is: paste your public URL, verify your email, and receive a signed APK — typically in about 60 seconds. If you later want custom work beyond the standard conversion, our custom apps option covers that separately.
Can I publish my AI Studio app to Google Play?
Google Play requires an AAB (Android App Bundle) rather than an APK, and has its own review requirements and developer policies that your app will need to meet. We do not make promises about Play acceptance — no converter honestly can. If a Play Store release is your goal, the Play Store files — the AAB, your signing key, a hosted privacy policy, the graphics and the form answers — comes in one payment.
Will the Gemini features in my app keep working in the APK?
The APK shows exactly what your public URL shows in a browser — it loads your live deployment at runtime. So the reliable test is simple: open your deployed URL in a normal browser tab (ideally a private window). Whatever works there — chat, generation, your app's features — works the same way in the Android app, because it is the same live site. Test the deployment, not the AI Studio preview: the deployment is what your users get.

Your AI Studio App Deserves More Than a Workspace Link

Deploy it publicly, paste the URL, verify your email — signed APK in about 60 seconds.

Convert My AI Studio App →