-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathaddon.xml
More file actions
18 lines (18 loc) · 719 Bytes
/
addon.xml
File metadata and controls
18 lines (18 loc) · 719 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<addon id="script.hello.world" name="Scripty McScriptface" version="1.0.0" provider-name="radavis">
<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">Scripty McScriptface</summary>
<description lang="en">Example Kodi Script</description>
<license>GNU General Public License, v2</license>
<language></language>
<source>https://github.com/radavis/script.hello.world</source>
<email>rdavis.bacs@gmail.com</email>
</extension>
</addon>