mirror of
https://github.com/budtmo/docker-android.git
synced 2025-12-08 18:25:50 +00:00
9 lines
161 B
Bash
9 lines
161 B
Bash
#!/bin/bash
|
|
|
|
if [ -z "$REAL_DEVICE"]; then
|
|
echo "Container is using android emulator"
|
|
else
|
|
echo "Starting android screen copy..."
|
|
/usr/local/bin/scrcpy
|
|
fi
|