-
Notifications
You must be signed in to change notification settings - Fork 6
/
addon.xml
29 lines (29 loc) · 1.34 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
28
29
<?xml version="1.0" ?><addon id="plugin.video.afl-video" name="AFL Video" provider-name="Aussie Add-ons" version="0.0.1">
<requires>
<import addon="xbmc.python" version="2.1.0"/>
<import addon="script.module.aussieaddonscommon"/>
<import addon="script.module.beautifulsoup4"/>
<import addon="script.module.drmhelper"/>
<import addon="script.module.future"/>
<import addon="script.module.requests"/>
<import addon="script.common.plugin.cache"/>
</requires>
<extension library="default.py" point="xbmc.python.pluginsource" provides="video">
<provides>video</provides>
</extension>
<extension point="xbmc.addon.metadata">
<reuselanguageinvoker>true</reuselanguageinvoker>
<assets>
<icon>icon.png</icon>
<fanart>fanart.jpg</fanart>
</assets>
<summary>AFL Video by Aussie Add-ons</summary>
<description>Watch the latest AFL replays, news and match reports. Live streaming available with a valid AFL Live Pass</description>
<website>http://aussieaddons.com/addons/afl/</website>
<source>https://github.com/xbmc-catchuptv-au/plugin.video.afl-video</source>
<disclaimer>This plugin is not affiliated with the AFL in any way.</disclaimer>
<provides>video</provides>
<platform>all</platform>
<license>GNU GENERAL PUBLIC LICENSE Version 3, 29 June 2007</license>
</extension>
</addon>