Merge pull request #42 from djwesty/djwesty/41

Added instructions to build APK
This commit is contained in:
David Westgate 2025-02-27 14:50:10 -08:00 committed by GitHub
commit ec5521c542
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
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
gradlew.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: