-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathaddon.xml
19 lines (19 loc) · 1012 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="plugin.minimal.example-master" name="Minimal example plugin" version="0.0.0" provider-name="Example Plugin">
<!-- note the id has -master in it because then the github repo download is then an installable zip -->
<requires>
<import addon="xbmc.python" version="2.1.0"/>
</requires>
<extension point="xbmc.python.pluginsource" library="addon.py">
<provides>video</provides> <!-- remember to also change this accordingly you your plugin! -->
</extension>
<extension point="xbmc.addon.metadata">
<platform>all</platform>
<summary lang="en">Minimal example plugin</summary>
<description lang="en">A minimal, but working plugin to jumpstart xbmc plugin development quickly</description>
<license>Unlicence</license>
<source>http://example.com</source>
<website>http://example.com</website>
<email>[email protected]</email>
</extension>
</addon>