Can't make my plugin show the logo when installed on the CC App

I’m trying to make my plugin logo appear within the CC app but I just see a lego brick.

This is my manifest:

{
  "id": "ONIRICUXP",
  "name": "Oniric v2.1 (UXP)",
  "version": "2.1.0",
  "main": "index.js",
  "host": [
    {
      "app": "PS",
      "minVersion": "23.0.0",
      "data": {
        "apiVersion": 2,
        "loadEvent": "use"
      }
    }
  ],
  "requiredPermissions": {
    "localFileSystem": "fullAccess",
    "launchProcess": {
      "extensions": [
        ""
      ],
      "schemes": [
        "https"
      ]
    },
    "network": {
      "domains": "all"
    },
    "allowCodeGenerationFromStrings": true
  },
  "manifestVersion": 5,
  "entrypoints": [
    {
      "type": "panel",
      "id": "oniricUXP",
      "minimumSize": {
        "width": 260,
        "height": 290
      },
      "maximumSize": {
        "width": 1000,
        "height": 2160
      },
      "preferredDockedSize": {
        "width": 260,
        "height": 950
      },
      "preferredFloatingSize": {
        "width": 260,
        "height": 950
      },
      "label": {
        "default": "Oniric v2.1 (UXP)"
      },
      "icons": [
        {
          "width": 23,
          "height": 23,
          "path": "icons/oniric.png",
          "scale": [
            1,
            2
          ],
          "theme": [
            "dark",
            "darkest",
            "medium",
            "light",
            "lightest"
          ]
        }
      ]
    }
  ],
  "icons": [
    {
      "width": 48,
      "height": 48,
      "path": "icons/on.png",
      "scale": [
        1,
        2
      ],
      "theme": [
        "darkest",
        "dark",
        "medium",
        "lightest",
        "light",
        "all"
      ]
    }
  ],
  "runOnStartup": true
}

I have four icons:

This works fine inside Photoshop, I only have issues when Installed. Is it because it is not inside the Adobe Market Place?

Logo won’t show for locally installed plugins AFAIR. Or was it just Dev Tools :thinking: Maybe only installed via UDT doesn’t show logo. Don’t remember exactly now

I installed it via CC app. I packaged the plugin and then installed it, already copied the manifest settings from another plugin that shows the logo inside CC but seems not working with mine. Could it be probably because it is not inside the Adobe Market Place? @kerrishotts do you know something about this?

Marketplace doesn’t matter. I remember there already was a topic about this. Try searching the forum

You will see default icon in Creative Cloud desktop app marketplace and not the logo if the plugin is not hosted on marketplace i.e. locally developed & installed plugins.

3 Likes

Thank you very much for clarifying it.