mirror of
https://github.com/status-im/realm-js.git
synced 2025-01-11 23:04:29 +00:00
15 lines
220 B
Bash
Executable File
15 lines
220 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -o pipefail
|
|
set -e
|
|
|
|
PATH="/opt/android-sdk-linux/platform-tools:$PATH"
|
|
|
|
rm -rf node_modules/realm
|
|
npm install realm
|
|
|
|
adb reverse tcp:8081 tcp:8081
|
|
adb forward tcp:8082 tcp:8082
|
|
|
|
react-native run-android
|