Version Packaging

Learn about how to package your custom pod for successfully submitting to Developer Distribution.

Organizing the files

Ensure all the necessary files for your custom pod are in a single directory. This includes:

Create a manifest

The custom pod package should include a breeze-manifest.xml file in the root directory. The manifest file should include the following information:

Compress the file

Once you have all your files organized and tested, compress them into a ZIP file. Ensure the ZIP file maintains the directory structure. Change the extension type from .zip to .pod. Please note that renaming the custom pod package to a .pod extension is required if you are submitting the Custom Pod to Developer Distribution.

Test and verify locally

Upload the .pod file into a share pod inside an Adobe Connect room to test it locally. If the Custom Pod works as expected, you are now ready to submit the Custom Pod package through Developer Distribution.

Example Directory Structure

data-slots=heading, code
data-languages=JavaScript
MyCustomPod/
├── index.html
├── breeze-manifest.xml
├── assets/
│   ├── style.css
│   ├── script.js
│   └── image.png
└── lib/
    └── connect_customPodSDK.js