Go to file
wpetit 728876061b
Pyxis/fieldnotes/feature%2Fmemory-usage-fix There was a failure building this commit Details
Add launcher icon
2019-02-12 16:02:13 +01:00
android Add launcher icon 2019-02-12 16:02:13 +01:00
bridge/reachview Reboot module after base position modification 2019-02-12 11:15:41 +01:00
containers/ci Configure locale to fix CI build 2018-11-03 13:23:59 +01:00
doc Generate ReachView lib bindings with gomobile 2018-10-01 09:28:25 +02:00
misc Add launcher icon 2019-02-12 16:02:13 +01:00
src Reboot module after base position modification 2019-02-12 11:15:41 +01:00
.babelrc Use Sentry to report errors in production 2018-12-26 22:26:39 +01:00
.buckconfig Initial commit 2018-09-28 11:02:04 +02:00
.editorconfig Annotate entities with metadata from nomenclatures 2018-11-03 17:26:54 +01:00
.env.dist Use Sentry to report errors in production 2018-12-26 22:26:39 +01:00
.flowconfig Initial commit 2018-09-28 11:02:04 +02:00
.gitattributes Initial commit 2018-09-28 11:02:04 +02:00
.gitignore Inject Sentry/Mapbox secrets in Jenkins CI 2018-12-27 11:21:25 +01:00
.watchmanconfig Initial commit 2018-09-28 11:02:04 +02:00
Jenkinsfile Inject Sentry/Mapbox secrets in Jenkins CI 2018-12-27 11:21:25 +01:00
Makefile Simplify collect visualisation 2018-11-18 21:14:54 +01:00
README.md Add make target & doc to generate signed APK 2018-10-01 18:45:08 +02:00
app.json Initial commit 2018-09-28 11:02:04 +02:00
index.js Use Sentry to report errors in production 2018-12-26 22:26:39 +01:00
package-lock.json Use Sentry to report errors in production 2018-12-26 22:26:39 +01:00
package.json Use Sentry to report errors in production 2018-12-26 22:26:39 +01:00
yarn.lock Initial commit 2018-09-28 11:02:04 +02:00

README.md

Field Notes

Companion app for the Orion project

*/!* Work in progress. Expect dragons!

Getting started

  1. Follow the workspace preparation guide
  2. In your terminal, run
make init
make install-android

Generate a Android release build

  1. Create your keystore
    keytool -genkey -v \
      -keystore 'my-release-key.keystore' \
      -alias 'my-key-alias' \
      -keyalg RSA \
      -keysize 2048 \
      -validity 10000
    
  2. Put your keystore into android/app
  3. Open the android/gradle.properties file et add/edit the following lines:
RELEASE_STORE_FILE=my-release-key.keystore
RELEASE_KEY_ALIAS=my-key-alias
RELEASE_STORE_PASSWORD=*****
RELEASE_KEY_PASSWORD=*****
  1. Generate your release
make android-release