I’m posting here to ask if anyone has run across this issue before with manifest version affecting installation of CCX.
The manifest.json file for my UXP plugin in Photoshop has the following:
{
"id": "foo",
"name": "bar",
"version": "1.0.0",
"main": "index.html",
"manifestVersion": 6,
"host": {
"app": "PS",
"minVersion": "26.3.0",
"data": {
"apiVersion": 2
}
}
}
Generating the CCX build with the above contents works as intended, and the plugin can be installed successfully simply by double clicking the CCX file. However, when the manifestVersion value is changed to 5, the plugin can no longer be installed due to a manifest parsing error (code -4).
There doesn’t seem to be a manifest version 6 yet, so it’s odd that this is the value that enables successful installation.