From 96fe517c6afdcde544af5b4ebb38ea01af87be52 Mon Sep 17 00:00:00 2001 From: David Westgate Date: Wed, 26 Feb 2025 22:38:49 -0800 Subject: [PATCH 1/2] added instructions to build APK --- .gitignore | 1 + README.md | 13 +++++++++++++ 2 files changed, 14 insertions(+) diff --git a/.gitignore b/.gitignore index 55c8749..911a6ff 100644 --- a/.gitignore +++ b/.gitignore @@ -37,5 +37,6 @@ yarn-error.* app-example android +ios .env coverage \ No newline at end of file diff --git a/README.md b/README.md index eff77e9..7eb848a 100644 --- a/README.md +++ b/README.md @@ -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: From c65a3506bd58f867230cf2fc8de8a509fb67b30c Mon Sep 17 00:00:00 2001 From: David Westgate Date: Thu, 27 Feb 2025 12:26:15 -0800 Subject: [PATCH 2/2] fix typo --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 7eb848a..6319621 100644 --- a/README.md +++ b/README.md @@ -68,7 +68,7 @@ To create an APK build, use the following npx expo prebuild cd android ./gradlew assembleRelease # linux -gradew.bat assembleRelease # possible windows command +gradlew.bat assembleRelease # possible windows command ``` Then, see `android/app/build/outputs/apk/release/app-release.apk` for the output