setAppSource
Configure the source code path and platform for a specific app ID to ensure accurate automation and testing setup in the AutoMobile server.
Instructions
For a given appId, set the source code path and platform.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
appId | Yes | App ID to persist these settings for. | |
platform | Yes | Platform the app is built for. | |
sourceDir | Yes | App source code directory. |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"appId": {
"description": "App ID to persist these settings for.",
"type": "string"
},
"platform": {
"description": "Platform the app is built for.",
"enum": [
"android",
"ios"
],
"type": "string"
},
"sourceDir": {
"description": "App source code directory.",
"type": "string"
}
},
"required": [
"sourceDir",
"appId",
"platform"
],
"type": "object"
}