-
Notifications
You must be signed in to change notification settings - Fork 30
/
addon.xml
27 lines (26 loc) · 1.39 KB
/
addon.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<addon id="plugin.program.autocompletion" name="AutoCompletion for virtual keyboard" version="1.0.1" provider-name="Philipp Temminghoff (phil65)">
<requires>
<import addon="xbmc.python" version="2.25.0" />
<import addon="script.module.simplejson" version="3.3.0"/>
<import addon="script.module.autocompletion" version="1.0.0"/>
</requires>
<extension point="xbmc.python.pluginsource" library="plugin.py" />
<extension point="xbmc.python.script" library="default.py">
<provides>executable</provides>
</extension>
<extension point="xbmc.addon.metadata">
<summary lang="en">AutoCompletion for the virtual keyboard (needs skin support)</summary>
<description lang="en">AutoCompletion for the virtual keyboard (needs skin support)</description>
<platform>all</platform>
<license>GNU GENERAL PUBLIC LICENSE Version 2.1, February 1999</license>
<source>https://github.com/phil65/plugin.program.autocompletion</source>
<assets>
<icon>resources/icon.png</icon>
<fanart>resources/fanart.jpg</fanart>
<screenshot>resources/screenshot-01.jpg</screenshot>
<screenshot>resources/screenshot-02.jpg</screenshot>
<screenshot>resources/screenshot-03.jpg</screenshot>
</assets>
</extension>
</addon>