Properties
| Name | Type | Description |
|---|---|---|
| description | string | The description that was provided when uploading the app. The description is not shown on the terminal. |
| errorCode | string | The error code of the app. It exists if the status is error or invalid. |
| id | string | The unique identifier of the app. |
| label | string | The app name that is shown on the terminal. |
| packageName | string | The package name that uniquely identifies the Android app. |
| status | string | The status of the app. Possible values: * `processing`: the app is being signed and converted to a format that the terminal can handle. * `error`: something went wrong. Check that the app matches the |
| versionCode | integer | The version number of the app. |
| versionName | string | The app version number that is shown on the terminal. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/AndroidApp",
"title": "AndroidApp",
"properties": {
"description": {
"description": "The description that was provided when uploading the app. The description is not shown on the terminal.",
"type": "string"
},
"errorCode": {
"description": "The error code of the app. It exists if the status is error or invalid.",
"type": "string"
},
"id": {
"description": "The unique identifier of the app.",
"type": "string"
},
"label": {
"description": "The app name that is shown on the terminal.",
"type": "string"
},
"packageName": {
"description": "The package name that uniquely identifies the Android app.",
"type": "string"
},
"status": {
"description": "The status of the app. Possible values: \n* `processing`: the app is being signed and converted to a format that the terminal can handle.\n* `error`: something went wrong. Check that the app matches the [requirements](https://docs.adyen.com/point-of-sale/android-terminals/app-requirements).\n* `invalid`: there is something wrong with the APK file of the app.\n* `ready`: the app has been signed and converted.\n* `archived`: the app is no longer available.",
"type": "string"
},
"versionCode": {
"description": "The version number of the app.",
"format": "int32",
"type": "integer"
},
"versionName": {
"description": "The app version number that is shown on the terminal.",
"type": "string"
}
},
"required": [
"id",
"status"
],
"type": "object"
}