mirror of
https://github.com/CompassConnections/Compass.git
synced 2026-01-02 02:48:02 -05:00
16 lines
242 B
Bash
Executable File
16 lines
242 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
cd "$(dirname "$0")"/..
|
|
|
|
export NEXT_PUBLIC_WEBVIEW=1
|
|
|
|
yarn build-web
|
|
|
|
source web/.env
|
|
|
|
npx cap sync android
|
|
|
|
# Then go to android studio, build, generate signed APK in android/app/release, adb install -r app-release.apk
|