added instructions to build APK

This commit is contained in:
David Westgate 2025-02-26 22:38:49 -08:00
parent 25dc61006b
commit 96fe517c6a
2 changed files with 14 additions and 0 deletions

1
.gitignore vendored
View File

@ -37,5 +37,6 @@ yarn-error.*
app-example
android
ios
.env
coverage

View File

@ -60,6 +60,19 @@ In the output, you'll find options to open the app in a
You can start developing by editing the files inside the **app** directory. This project uses [file-based routing](https://docs.expo.dev/router/introduction).
### Android APK build
To create an APK build, use the following
```bash
npx expo prebuild
cd android
./gradlew assembleRelease # linux
gradew.bat assembleRelease # possible windows command
```
Then, see `android/app/build/outputs/apk/release/app-release.apk` for the output
### Learn more
To learn more about developing your project with Expo, look at the following resources: