mirror of
https://github.com/CompassConnections/Compass.git
synced 2025-12-23 22:18:43 -05:00
12 lines
233 B
Bash
Executable File
12 lines
233 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
cd "$(dirname "$0")"/..
|
|
|
|
export $(grep -E '^NEXT_PUBLIC_LOCAL_ANDROID=' .env)
|
|
|
|
npx cap sync android
|
|
|
|
# Then go to android studio, build, generate signed APK in android/app/release, adb install -r app-release.apk
|