Compare commits

..
3 Commits
3 changed files with 19 additions and 3 deletions
+1 -1
View File
@@ -25,7 +25,7 @@ As far as we can tell it would be impossible for Google to match the randomly ge
Docker-Android's analytics are sent throughout Docker-Android's execution to Google Analytics over HTTPS.
## Who?
Docker-Android's analytics are accessible to Docker-Android's current maintainers. Contact [@butomo1989](https://github.com/butomo1989) if you are a maintainer and need access.
Docker-Android's analytics are accessible to Docker-Android's current maintainers. Contact [@budtmo](https://github.com/budtmo) if you are a maintainer and need access.
## How?
The code is viewable in [this lines](./src/appium.sh#L225-L247).
+9
View File
@@ -16,6 +16,15 @@ You can change the language setting of Android Emulator on the fly by passing fo
- LANGUAGE="\<language>"
- COUNTRY="\<country>"
Data partition size
-------------------
The size of the data partition can be set by passing the following environment variable:
- DATAPARTITION="\<size>"
The value can be specified in the same format that is used by the emulator config file (`disk.dataPartition.size`), e.g. `800m`.
Camera
------
+9 -2
View File
@@ -23,8 +23,15 @@ function prepare_geny_cloud() {
device=$(get_value '.device')
port=$(get_value '.port')
echo "Starting \"$device\" with template name \"$template\"..."
instance_uuid=$(gmsaas instances start "${template}" "${device}")
if [[ $device != null ]]; then
echo "Starting \"$device\" with template name \"$template\"..."
instance_uuid=$(gmsaas instances start "${template}" "${device}")
else
echo "Starting Device with Random name..."
random_device_name=$(python3 -c 'import uuid; print(str(uuid.uuid4()).upper())')
instance_uuid=$(gmsaas instances start "${template}" "${random_device_name}")
fi
echo "Instance-ID: \"$instance_uuid\""
created_instances+=("${instance_uuid}")