Solved Addon Icon isn't show up
#1
Hi,

I converted an addon in python2 to 3, but the icon that shows up is the default kodi addon icon.
Why is that?
Is there any limitation about the image size or something like this?

The location and the name is the same as others.

Thanks.
Reply
#2
Found the issue, I didn't know that I should add it to the assets of "xbmc.addon.metadata" in the addon.xaml, like this:

Code:
  <extension point="xbmc.addon.metadata">
   .
   .
   .
    <assets>
        <icon>icon.png</icon>
    </assets>

  </extension>
Reply
#3
You can also add fanart for your own background:

<assets>
    <icon>icon.png</icon>
    <fanart>fanart.jpg</fanart>
</assets>


Jeff
Running with the Mezzmo Kodi addon.  The easier way to share your media with multiple Kodi clients.
Service.autostop , CBC Sports, Kodi Selective Cleaner and Mezzmo Kodi addon author.
Reply

Logout Mark Read Team Forum Stats Members Help
Addon Icon isn't show up0