Skip to content

sdk

Required: Yes
Type: Object

Reference to the exact SDK and version the extension is designed for.

Tools must allow projects to use the extension together with other versions of the same SDK, to allow extension authors to update their extensions separately from the SDK they build on top of. It is up to the user to only use the extension with SDK versions it works with. Tools may produce warnings when the version doesn't exactly match.

Field Type Description
id string ID of the SDK
version string Version of the SDK

Example

1
2
3
sdk:
  id: gecko_sdk
  version: 3.2.0
Back to top