Add support for real device and screen mirroring

This commit is contained in:
Andrejs Cunskis
2017-07-03 22:50:37 +03:00
parent 8d544448f1
commit 2bc30edf4c
4 changed files with 143 additions and 2 deletions
+8
View File
@@ -0,0 +1,8 @@
#!/bin/bash
if [ -z "$REAL_DEVICE"]; then
echo "Container is using android emulator"
else
echo "Starting android screen mirro..."
java -jar /root/asm.jar $ANDROID_HOME
fi