/delings-app

Primary LanguageJavaScript

Delings

Setup

Follow these guides:

Run this command (only once):

npm install -g react-native-cli

Build

Installing dependencies:

  • cd delings-app
  • npm install

Starting the app on Android:

  • react-native run-android

Starting the app on iOS:

  • react-native run-ios

Release

Use HockeyApp for distribution.

Android

Follow these guides:

Generate a release key hash for Facebook:

keytool -exportcert -alias <RELEASE_KEY_ALIAS> -keystore <RELEASE_KEY_PATH> | openssl sha1 -binary | openssl base64

Do not enable Proguard without extensive testing.

Generating the release APK:

  • cd android
  • ./gradlew assembleRelease

Testing the release build:

  • cd android
  • ./gradlew installRelease

iOS

Follow these guides: