123456789101112131415161718192021222324 |
- <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
- <addon id="@PKG_ADDON_ID@"
- name="@ADDON_NAME@"
- version="@ADDON_VERSION@"
- provider-name="@PROVIDER_NAME@">
- <requires>
- <import addon="os.libreelec.tv" version="@OS_VERSION@"/>
- <import addon="xbmc.python" version="2.1.0"/>
- @REQUIRES@
- </requires>
- <extension point="xbmc.python.script" library="default.py" />
- <extension point="xbmc.python.module" library="lib/">
- </extension>
- <extension point="xbmc.addon.metadata">
- <summary>@PKG_SHORTDESC@</summary>
- <description>
- @PKG_LONGDESC@
- </description>
- <disclaimer>
- @PKG_DISCLAIMER@
- </disclaimer>
- <platform>all</platform>
- </extension>
- </addon>
|