-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
70b747c
commit 9345ced
Showing
1 changed file
with
6 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,33 +10,25 @@ Make sure you have [setup your environment for React Native](https://reactnative | |
git clone [email protected]:synonymdev/bitkit.git && cd bitkit | ||
``` | ||
|
||
2. Install dependencies | ||
2. Switch Node version | ||
|
||
```shell | ||
yarn install | ||
``` | ||
|
||
3. Setup iOS or Android dependencies | ||
Switch to the Node.js version defined in `.node-version`. You can visit [.node-version File Usage](https://github.com/shadowspawn/node-version-usage) and use one of these methods to change the node version you need. | ||
|
||
```shell | ||
yarn setup-ios | ||
``` | ||
|
||
or | ||
3. Install dependencies | ||
|
||
```shell | ||
yarn setup-android | ||
yarn install | ||
``` | ||
|
||
4. Start the project | ||
|
||
On iOS Simulator: | ||
On iOS Simulator/Device: | ||
|
||
```shell | ||
yarn ios | ||
``` | ||
|
||
On Android Emulator: | ||
On Android Emulator/Device: | ||
|
||
```shell | ||
yarn android | ||
|