xbmc.python.module.xml 705 B

123456789101112131415161718192021222324
  1. <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
  2. <addon id="@PKG_ADDON_ID@"
  3. name="@ADDON_NAME@"
  4. version="@ADDON_VERSION@"
  5. provider-name="@PROVIDER_NAME@">
  6. <requires>
  7. <import addon="os.libreelec.tv" version="@OS_VERSION@"/>
  8. <import addon="xbmc.python" version="2.1.0"/>
  9. @REQUIRES@
  10. </requires>
  11. <extension point="xbmc.python.script" library="default.py" />
  12. <extension point="xbmc.python.module" library="lib/">
  13. </extension>
  14. <extension point="xbmc.addon.metadata">
  15. <summary>@PKG_SHORTDESC@</summary>
  16. <description>
  17. @PKG_LONGDESC@
  18. </description>
  19. <disclaimer>
  20. @PKG_DISCLAIMER@
  21. </disclaimer>
  22. <platform>all</platform>
  23. </extension>
  24. </addon>