forked from radavis/script.hello.world
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaddon.xml
19 lines (19 loc) · 793 Bytes
/
addon.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<addon id="script.hello.world" name="Hello World" version="1.0.0" provider-name="DaVu">
<requires>
<import addon="xbmc.python" version="2.14.0"/>
</requires>
<extension point="xbmc.python.script" library="addon.py">
<provides>executable</provides>
</extension>
<extension point="xbmc.addon.metadata">
<platform>all</platform>
<summary lang="en">Popup Hello World</summary>
<description lang="en">Example Script to show Hello World</description>
<description lang="en">All Credits to the initial author 'Zag'</description>
<license>GNU General Public License, v2</license>
<language></language>
<source>https://github.com/DaVukovic/script.hello.world</source>
<email></email>
</extension>
</addon>