mirror of
https://github.com/status-im/realm-js.git
synced 2025-01-10 06:15:49 +00:00
401b501aab
Fixes #277
14 lines
243 B
Bash
Executable File
14 lines
243 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -o pipefail
|
|
set -e
|
|
|
|
PATH="/opt/android-sdk-linux/platform-tools:$PATH"
|
|
|
|
# Inform the prepublish script to build Android modules.
|
|
REALM_BUILD_ANDROID=1 npm install realm
|
|
|
|
adb reverse tcp:8081 tcp:8081
|
|
|
|
react-native run-android
|