diff options
author | Alwin Esch <alwin.esch@web.de> | 2017-05-29 17:31:47 +0200 |
---|---|---|
committer | Alwin Esch <alwin.esch@web.de> | 2017-05-29 17:31:47 +0200 |
commit | 71d958d9d5316dffa70b5abb849c841c1fc52642 (patch) | |
tree | 237fd3986e0adab8f2a640dd5028f897d3932743 /addons | |
parent | 40f9340f769dc93d790ff78693e8f95d73799443 (diff) |
[addons] add general addon callback functions to new style
This add the general function who used on several addons to the new addon
interface style.
In future all the basics like on Python addons can be added here.
Diffstat (limited to 'addons')
-rw-r--r-- | addons/kodi.binary.global.general/addon.xml.in | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/addons/kodi.binary.global.general/addon.xml.in b/addons/kodi.binary.global.general/addon.xml.in new file mode 100644 index 0000000000..119c803363 --- /dev/null +++ b/addons/kodi.binary.global.general/addon.xml.in @@ -0,0 +1,7 @@ +<?xml version="1.0" encoding="UTF-8"?> +<addon id="kodi.binary.global.general" version="@ADDON_GLOBAL_VERSION_GENERAL@" provider-name="Team Kodi"> + <backwards-compatibility abi="@ADDON_GLOBAL_VERSION_GENERAL_MIN@"/> + <requires> + <import addon="xbmc.core" version="0.1.0"/> + </requires> +</addon> |