5 September 2026 · 5 min read

Do I own the source code? Yes. Here is exactly what you get.

You own the app, and you can download the complete project any time, free. What is in the zip, what is deliberately not, and how to run it without us.

A set of keys resting in an open hand
Photograph via Unsplash

Short answer: you own the source code of every app built here, and you can export it whenever you like. Our terms say it in one line: you own your prompts and your generated apps, and we claim no ownership of the code or content generated for you. The download is free, sits in your app’s settings, and hands you an ordinary React Native project that runs without us. The rest of this note is what that means in practice, because a lot of builders say “your code” and mean a screenshot.

What ownership covers

  • The app: every screen, component and helper written for you, from a template or from your description.
  • Your data: it lives in a Supabase project. Once you connect your own, it lives in your account, not ours.
  • Your prompts: yours, and we do not train AI models on them or on your apps.
  • The open-source packages the app uses stay under their own licences, the same as in any codebase.

What is in the download

Open your app, go to its settings, and under “Your code” press “Download my project”. What arrives is a zip containing a complete Expo project, which is the standard way React Native apps are built:

  • The root component and navigation, one file per screen, shared components, and the data, theme and helper code.
  • Your icon and splash images, and the native config with your app’s name and identifiers.
  • A package list of exactly the dependencies your app imports, with versions pinned and a lockfile, so the install reproduces.
  • An environment file with your Supabase URL and public key, and blank lines for anything else the code reads.
  • Your database: a full schema dump, plus the server functions we deployed into your project, such as the one that sends push notifications.
  • A README that gets a developer running in two commands and says which of the above could not be included, if anything.

The database and server pieces come along whenever we can read your backend. If we cannot, the README says so rather than shipping a project that looks whole and is not. If an app fails our own build check, the export refuses instead of handing you something broken.

How to run it without us

Unzip it, install the packages, and start Expo: two commands, both in the README. That gives a developer the bundler and a web preview straight away. Native builds go through Expo’s usual route: generate the iOS and Android projects and build with Xcode or Android Studio, or build in Expo’s cloud. The README walks through both. The app uses native modules, so it does not run in the Expo Go sandbox, which is normal for a real app.

What is deliberately not in it

Nothing of ours. No platform secrets, no keys to our build pipeline, and none of the machinery that generated the project. What you get is a conventional codebase with no trace of how it was made, which is the point: a developer you hire later opens it and sees a normal Expo app. The small helper files that came from our scaffold are released to you under the MIT licence, so you can keep, change or delete them.

Why this matters when you choose a builder

Some builders never let you leave. Others let you export the source code only on a paid tier, or export something that only runs inside their platform. Ask three questions of any tool: do I own the code, can I export it, and does the export run anywhere. Here the answers are yes, yes and yes, and the export is free on every plan, including for apps built from free templates.

Ownership you cannot download is a promise. Ownership you can unzip is a fact.

Quick answers

Do I own the source code of an app built with Glassly?
Yes. The terms state that you own your prompts and generated apps and that Glassly claims no ownership of the code. Open-source packages the app uses keep their own licences, as in any codebase.
Can I export the source code?
Yes, any time, free on every plan. In your app’s settings under “Your code”, press “Download my project” to get a zip containing a complete Expo (React Native) project: screens, components, helpers, icon and native config, a pinned package list, your Supabase settings, a full database schema dump, the server functions deployed into your project, and a README.
Does the exported app run without Glassly?
Yes. It is an ordinary Expo project: run npm install and npx expo start, then build natively with Xcode or Android Studio or in Expo’s cloud. It talks to your own Supabase project, not to Glassly.
What is not included in the export?
Nothing that belongs to the platform: no platform secrets, no build-pipeline keys, and none of the generation machinery. If the database or server functions cannot be read at export time, the README says so. An app that fails the build check is refused rather than exported half-finished.