Niraj
January 24, 2023, 9:32am
1
Hi All,
I got following error while loading the plugin file at Adobe Developer Console:
Plugin manifest has an invalid host app min version.
Here is my manifest.json code:
{
"id": "1001qbc",
"name": "ContentManager",
"version": "1.0.5",
"main": "index.html",
"host": [
{
"app": "PS",
"minVersion": "23.5.0"
}
],
"manifestVersion": 4,
}
Can anyone please help?
Thanks
Change it to
"host": {
"app": "PS",
"minVersion": "23.5.0"
},
And don’t ask I never got a proper answer and I suppose docs were never fixed. I vaguely remember reason being that a single plugin can’t support multiple apps anyway, so array doesn’t really make sense.
Niraj
January 27, 2023, 9:33am
3
Hi @Karmalakas , I have changed manifest file as follows:
> {
> "id": "1001qbc",
> "name": "ContentManager",
> "version": "1.0.5",
> "main": "index.html",
> "host": {
> "app": "PS",
> "minVersion": "23.5.0"
> },
> "manifestVersion": 4,
> }
but still getting same error when loading the plugin file at Adobe Developer Console.
Apparently Adobe has some issues. Check this thread and a solution
Just got a newsletter, where it says:
UXP Plugins: Due to an issue with the Exchange portal, the host.minVersion and host.maxVersion in your UXP plugin manifest must be specified in a.b format . We will soon support the a.b.c format.
And of course "minVersion": "23.3" worked