An error "Plugin manifest has an invalid host app min version" in Adobe Developer Console

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 :smiley: 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.

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