Skip to content

Latest commit

 

History

History
44 lines (26 loc) · 1.55 KB

BUILD.md

File metadata and controls

44 lines (26 loc) · 1.55 KB

Building Bitkit from source

These instructions are for building Bitkit from source to get a production version of the app. If you are looking for the latest release, you can download it from the App Store or Google Play or get the latest APK from the releases page.

Requirements

Make sure you have setup your environment for React Native.

Note

Not all of the steps outlined in the above link may be required for building the app. You can skip the ones not relevant to you.

Setup

  1. Clone the repository
git clone [email protected]:synonymdev/bitkit.git && cd bitkit
  1. Switch Node version

Switch to the Node.js version defined in .node-version. You can visit .node-version File Usage and use one of these methods to change the node version you need.

  1. Install dependencies
yarn install
  1. Set environment variables
cp .env.production.template .env.production

Build

iOS

Follow instructions from the React Native docs for iOS.

Android

Follow instructions from the React Native docs for Android. After that you can find the .aab under android/app/build/outputs/bundle/release/app-release.aab which can be installed on your device.