Skip to content

compatible_sdk

Required: No
Type: List of objects

List of mappings from other SDKs' ID and version to versions of this SDK. Used when one SDK has been rolled into another in a later release, or an SDK has been renamed or otherwise modified in a way that doesn't preserve the lineage of SDK version numbers associated with a single SDK ID.

Only SDK version numbers that are explicitly listed are considered compatible.

Field Type Description
id string ID of the compatible SDK
versions map Map of compatible SDK versions, where the key is the version of the foreign SDK and the value is the version of the current SDK

Example

1
2
3
4
5
6
7
8
id: gecko_sdk
compatible_sdk:
  - id: other_sdk
    versions:
      "2.3.0": "2.7.0"
      "2.3.1": "2.7.0"
      "2.3.2": "2.7.1"
      "2.4.0": "2.8.0"
Back to top