web/packages/mobile
2023-07-28 07:08:52 -05:00
..
.devcontainer feat: mobile app package (#1075) 2022-06-09 09:45:15 -05:00
android chore: upgrade react native (#2356) 2023-07-14 01:44:07 +05:30
fastlane chore: ios ci 2023-07-15 21:17:10 +05:30
html/Web.bundle chore: show android system webview update prompt if app fails to load (#2318) 2023-04-26 22:58:59 +05:30
ios refactor: component viewer (#2377) 2023-07-28 07:08:52 -05:00
src chore: upgrade eslint and prettier (#2376) 2023-07-27 14:36:05 -05:00
WebFrame fix: on mobile open links from editor in external browser (#1860) 2022-10-25 21:38:29 +05:30
.buckconfig feat: mobile app package (#1075) 2022-06-09 09:45:15 -05:00
.eslintrc.js chore: fix eslint crashing issues (#1951) 2022-11-04 17:09:54 -05:00
.flowconfig chore: upgrade react native (#2018) 2022-11-16 14:10:50 -06:00
.gitignore chore: upgrade react native & deps (#2231) 2023-02-28 01:30:51 +05:30
.mocharc.yml feat: mobile app package (#1075) 2022-06-09 09:45:15 -05:00
.prettierignore feat(wip): components monorepo (#1082) 2022-06-10 10:15:44 -05:00
.ruby-version chore: fix android ci 2023-07-14 22:06:14 +05:30
.watchmanconfig feat: mobile app package (#1075) 2022-06-09 09:45:15 -05:00
app.json fix: icons package 2022-06-09 22:38:38 -05:00
babel.config.js refactor: remove classic mobile (#1789) 2022-10-13 14:09:45 -05:00
CHANGELOG.md chore(release): publish 2023-07-28 07:40:53 +00:00
CHANGELOG.md.json feat: New 'What's New' section in Preferences (#2049) (skip e2e) 2022-11-24 05:46:44 -06:00
Gemfile chore: fix android ci 2023-07-14 22:06:14 +05:30
Gemfile.lock chore: update fastlane 2023-04-27 13:29:42 +05:30
index.js refactor: remove classic mobile (#1789) 2022-10-13 14:09:45 -05:00
LICENSE feat: mobile app package (#1075) 2022-06-09 09:45:15 -05:00
linter.tsconfig.json feat: mobile app package (#1075) 2022-06-09 09:45:15 -05:00
metro.config.js chore: upgrade react native (#2356) 2023-07-14 01:44:07 +05:30
package.json chore(release): publish 2023-07-28 07:40:53 +00:00
README.md chore: remove slack (#1999) 2022-11-14 12:01:37 -06:00
tsconfig.json chore: fix eslint crashing issues (#1951) 2022-11-04 17:09:54 -05:00

Standard Notes

Latest release version License Twitter Follow

iOS & Android App

Standard Notes is a safe place for your notes, thoughts, and life's work. It focuses on being simple, so you don't have to fight with endless features that slow you down. It encrypts your notes to protect your privacy. And, it's extensible, so you can backup your notes to Dropbox, Google Drive, and other services, as well as install themes, editors, and more.

Download Options:

The Code

This is a React Native implementation of Standard Notes. React Native allows us to build native mobile applications using JavaScript. This allows us to develop faster, as well as have a more reliable and consistent cross-platform experience.

Building from source

  1. Setup your environment according to official docs 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.
  3. Install yarn if you haven't already.
  4. Install project dependencies via:
yarn install && yarn install:pods

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.

If you would like to run the application on your iOS device, you'll need to do so using Xcode.

Contributing

Before contributing, please read our Longevity Statement to better understand how we approach adding new features. Unlike other projects, adding new features is something we prefer not to do, so if you have a feature which you think is absolutely essential, please create a discussion issue first before coding.