mirror of
https://github.com/CompassConnections/Compass.git
synced 2025-12-23 22:18:43 -05:00
24 lines
399 B
Bash
Executable File
24 lines
399 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
cd "$(dirname "$0")"/..
|
|
|
|
# keytool -genkeypair -v -keystore my-release-key.keystore -alias compass -keyalg RSA -keysize 2048 -validity 10000
|
|
|
|
# npx cap sync android
|
|
# npx cap run android
|
|
# npx cap open android
|
|
|
|
cd android
|
|
|
|
./gradlew --stop
|
|
./gradlew clean
|
|
./gradlew assembleRelease
|
|
./gradlew bundleRelease
|
|
|
|
adb install -r app-release.apk
|
|
|
|
adb logcat | grep FirebaseMessaging
|
|
|