Mobile Apps›Exporting to Expo
Exporting to Expo
Download your Wyber mobile app as a standard Expo project you can build, submit to the App Store / Play Store, or continue developing locally.
What you'll need
- Node.js 18+ — nodejs.org
- Expo CLI — npm install -g expo-cli
- A generated Wyber mobile app
Step-by-step
- 1Click Export
In the mobile editor top bar, click Export. Wyber packages the project as a ZIP file and starts the download.
Export buttonScreenshot placeholder — to be added after testing - 2Download and unzip
The ZIP contains a standard Expo project:
app/screens,components/,package.json, andapp.json. Unzip it anywhere on your machine. - 3Install dependenciesnpm install
- 4Run locallynpx expo start
Expo opens a QR code in the terminal. Scan it with Expo Go on your phone, or press w to open in a browser.
- 5Build for production (optional)
Use EAS Build (Expo's cloud build service) to generate an IPA or APK and submit to the App Store / Google Play. See the Expo EAS docs for the full submission guide.
Note: Exported code is standard Expo — no Wyber lock-in. You own the output and can develop it like any React Native project.