forked from kodi-community-addons/plugin.audio.spotify
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathaddon.xml
More file actions
21 lines (21 loc) · 1.13 KB
/
addon.xml
File metadata and controls
21 lines (21 loc) · 1.13 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<?xml version="1.0" encoding="UTF-8"?>
<addon id="plugin.audio.spotify" version="1.0.26" name="Spotify" provider-name="marcelveldt">
<requires>
<import addon="xbmc.python" version="2.1.0"/>
<import addon="xbmc.addon" version="12.0.0"/>
<import addon="script.module.requests" version="2.3.0"/>
<import addon="script.module.simplejson" version="3.3.0"/>
<import addon="script.module.six" version="1.9.0"/>
<import addon="script.module.unidecode" version="0.4.14"/>
</requires>
<extension point="xbmc.python.pluginsource" library="plugin.py">
<provides>audio</provides>
</extension>
<extension point="xbmc.python.library" library="spotifyservice.py" />
<extension point="xbmc.addon.metadata">
<platform>all</platform>
<summary>Unofficial Spotify music plugin for Kodi</summary>
<description>Requires a Spotify premium account.</description>
<disclaimer>This product uses SPOTIFY(R) CORE but is not endorsed, certified or otherwise approved in any way by Spotify. Spotify is the registered trade mark of the Spotify Group.</disclaimer>
</extension>
</addon>