v14 XFILE::CDirectory::GetDirectory - Error getting plugin://plugin.program.qtrakt/
#1
Hello,

I am just getting started on developing Kodi add-ons and, right now, I have a very basic one put together, just to try and solve this problem.
I am getting the following errors in kodi.log:

Code:
12:48:09 T:19296   ERROR: XFILE::CDirectory::GetDirectory - Error getting plugin://plugin.program.qtrakt/
12:48:09 T:19296   ERROR: CGUIMediaWindow::GetDirectory(plugin://plugin.program.qtrakt/) failed

My addon.xml file looks like this:

Code:
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<addon id="plugin.program.qtrakt" name="qTrakt" version="1.0.0" provider-name="quental">
    <requires>
        <import addon="xbmc.python" version="2.14.0"/>
    </requires>
    <extension point="xbmc.python.pluginsource" library="addon.py">
        <provides>executable</provides>
    </extension>
    <extension point="xbmc.addon.metadata">
        <platform>all</platform>
        <summary lang="en">Trakt.TV integration</summary>
        <description lang="en">A Kodi add-on for handling integration with the Trakt.TV platform.</description>
        <license>GNU General Public License, v2</license>
        <language></language>
        <forum></forum>
        <source></source>
        <email></email>
    </extension>
</addon>

And, finally, my addon.py looks like this:

Code:
import xbmcgui

xbmcgui.Dialog().ok("Test dialog", "yadda yadda yadda")

As you can see, there is not much room for error.
Could someone please share some insight as to why I am getting this error?

Thanks!
Reply
#2
Hi,

I also have the same issue ... can someone reply with what we do wrong?

and ... also, when adding the following code:


class MyClass(xbmcgui.Window):
def onAction(self, action):
if action == ACTION_PREVIOUS_MENU:
self.close()


mydisplay = MyClass()
mydisplay.doModal()
del mydisplay

my add on is open and there is a kodi "working..." message that never stop until I hit ESC.


Thx,
Yohay
Reply

Logout Mark Read Team Forum Stats Members Help
XFILE::CDirectory::GetDirectory - Error getting plugin://plugin.program.qtrakt/0