-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathaddon.xml
34 lines (34 loc) · 1.88 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
30
31
32
33
34
<?xml version="1.0" encoding="UTF-8"?>
<addon id="plugin.video.sling" version="2023.05.01.1" name="Sling" provider-name="d21spike, eracknaphobia">
<requires>
<import addon="xbmc.python" version="3.0.0"/>
<import addon="script.module.requests" />
<import addon="script.module.inputstreamhelper"/>
<import addon="script.module.requests_oauthlib"/>
<import addon="script.module.xmltodict"/>
<import addon="script.module.pytz"/>
<import addon="script.module.kodi-six" />
</requires>
<extension point="xbmc.python.pluginsource" library="default.py">
<provides>video</provides>
</extension>
<extension point="xbmc.service" library="service.py" start="startup" />
<extension point="xbmc.addon.metadata">
<description lang="en_GB">A database driven SlingTV Kodi add-on. Providing many of the offered features/services you've come to expect from the official SlingTV interface. Choose anything from Live Channels, to On Demand, to binge watching shows. It's all there.</description>
<platform>all</platform>
<license>GNU GENERAL PUBLIC LICENSE. Version 3, June 2007</license>
<source>https://github.com/d21spike/plugin.video.sling</source>
<website>https://www.Slingtv.com</website>
<news> </news>
<forum>https://forum.kodi.tv/showthread.php?tid=351048</forum>
<assets>
<icon>resources/images/icon.png</icon>
<fanart>resources/images/fanart.png</fanart>
<screenshot>resources/images/screenshot01.png</screenshot>
<screenshot>resources/images/screenshot02.png</screenshot>
<screenshot>resources/images/screenshot03.png</screenshot>
<screenshot>resources/images/screenshot04.png</screenshot>
<screenshot>resources/images/screenshot05.png</screenshot>
</assets>
</extension>
</addon>