scrcpy.sh 161 B

12345678
  1. #!/bin/bash
  2. if [ -z "$REAL_DEVICE"]; then
  3. echo "Container is using android emulator"
  4. else
  5. echo "Starting android screen copy..."
  6. /usr/local/bin/scrcpy
  7. fi