App Management
Last updated
Device Cloud provides several ways to manage your application binaries during test execution.
You have two ways to specify your application binary:
Direct File Upload
dcd cloud --app-file ./path/to/your/app.apk flow.yamlUsing Previously Uploaded Binary
dcd cloud --app-binary-id abc123 flow.yamlBy default, Device Cloud checks the SHA hash of your binary to avoid redundant uploads (it will automatically work out the app-binary-id for you). To override:
dcd cloud --app-file ./app.apk --ignore-sha-checkUse this when:
You need to force a re-upload of the same binary
You're experiencing hash verification issues
Last updated