From c2ee4d5701272dc8700ce22e7514749909ebe0ab Mon Sep 17 00:00:00 2001 From: Andreas Opferkuch Date: Sat, 31 Jan 2026 16:34:10 +0100 Subject: [PATCH 1/2] docs: mention having to build for mobile --- packages/mobile/README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/packages/mobile/README.md b/packages/mobile/README.md index b2181a08ffc..2713e9e43d2 100644 --- a/packages/mobile/README.md +++ b/packages/mobile/README.md @@ -27,16 +27,16 @@ This is a React Native implementation of Standard Notes. React Native allows us 1. Setup your environment according to [official docs](https://reactnative.dev/docs/environment-setup) and be sure you can run an example React Native project. 2. If you would like to build the Android app, you'll need to install the Android NDK. We use native code from the Libsodium encryption library to achieve high performance. You can install the NDK inside of Android Studio. You'll need to pick the version listed [here](https://github.com/standardnotes/react-native-sodium/blob/master/android/build.gradle#L47). 3. Install [yarn](https://yarnpkg.com/) if you haven't already. -4. Install project dependencies via: +4. Install project dependencies and build for mobile in the root directory: ```shell -yarn install && yarn install:pods +yarn install && yarn install:pods && yarn build:mobile ``` We have two flavors of the app: - `dev` which runs connects to development syncing server. To run locally use `yarn ios-dev` or `yarn android-dev` for Android. -- `prod` which is the equivalent of our production application. To run local use `yarn ios-prod` or `yarn android-prod` for Android. +- `prod` which is the equivalent of our production application. To run local use `yarn ios-prod` or `yarn android-prod-release` for Android. If you would like to run the application on your iOS device, you'll need to do so using Xcode. From 23b95971aed4edec018dcde092eec8c4b8472329 Mon Sep 17 00:00:00 2001 From: Andreas Opferkuch Date: Sat, 31 Jan 2026 16:46:54 +0100 Subject: [PATCH 2/2] docs(mobile): grammar consistency --- packages/mobile/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/mobile/README.md b/packages/mobile/README.md index 2713e9e43d2..4a05ec8952d 100644 --- a/packages/mobile/README.md +++ b/packages/mobile/README.md @@ -35,8 +35,8 @@ yarn install && yarn install:pods && yarn build:mobile We have two flavors of the app: -- `dev` which runs connects to development syncing server. To run locally use `yarn ios-dev` or `yarn android-dev` for Android. -- `prod` which is the equivalent of our production application. To run local use `yarn ios-prod` or `yarn android-prod-release` for Android. +- `dev` which runs connects to development syncing server. To run locally, use `yarn ios-dev` or `yarn android-dev` for Android. +- `prod` which is the equivalent of our production application. To run locally, use `yarn ios-prod` or `yarn android-prod-release` for Android. If you would like to run the application on your iOS device, you'll need to do so using Xcode.