manifest.toml located at the root of the package. This file describes essential information about the package, such as:
- Identifiers for the package and its components, such as interactive, service, and task, and their launch information.
- Capabilities of the Vega system and other installed applications the package depends on, such as modules, services, and messages.
- Privileges required to access certain features from the Vega system and other installed applications.
The manifest file
The Vega application manifest is defined in the TOML configuration file format, and declares multiple sections leveraging the TOML table[] and array of TOML table [[]] formats to group
information together.
schema-version
Required
schema-version specifies the schema version used in the manifest file. Every manifest must declare this before adding any other information.
1.
[package]
Required
The [package] section declares the basic details for the package, such as unique identifier, title, and icon.
[components]
Required
The [components] section declares the components bundled into this application package including interactive, service, and task components.
[tasks]
Optional
The [tasks] section declares small routines that can run at specific events during the lifecycle of the application package. At this time the Vega system supports the install event for running such tasks post application install and before first launch.
[needs]
Optional
The [needs] section declares the system capabilities that the application requires to function on a Vega device. This information helps Vega package manager and Amazon Appstore to ensure the application is installed on the supported devices. Carefully declare the application’s needs for your desired device targeting.
[wants]
Optional
The [wants] section declares the capabilities that are optional for the application to function on a Vega device. Handle graceful fallbacks in your application code if a feature in this list is unavailable on a device. You can choose a combination of needs and wants to maximize your device reach, while providing enhanced features on more capable devices.
[message]
Optional
The [message] section declares access control rules for message URIs used with Vega Messaging.
[offers]
Optional
The [offers] section declares the capabilities that this package offers to other applications on the system, such as modules, services, and interactions.
[processes]
Optional
The [processes] section declares the group of components that should share a process when launched.
[[extras]]
Optional
The [[extras]] section declares a set of key-value pairs to include custom meta-data associated with the package.
Manifest validation
To ensure your manifest.toml file is correctly formatted and contains valid configurations, you can use the VPT tool (App Packaging Tool). This tool is included in the Vega SDK and is automatically added to your system’sPATH during SDK installation.
To validate your manifest file, run the following command. Replace with the absolute path to your manifest file.

