How to specify several platforms at once on addon.xml?
#1
Hey there,

According to the xbmc wiki in (http://wiki.xbmc.org/index.php?title=addon.xml) it is possible to use several combinations of platforms:

2.4.2.1.3 <platform>
The <platform> tag specifies which platforms (operating systems, hardware) this add-on runs on. Many add-ons will run on all platforms, so all is an option. If the platform tag is missing, we assume the add-on runs on all platforms. A combination of these is also possible. Currently available options are:
all
linux
osx
osx64
osx32
ios
windx
wingl
android
<platform>all</platform>

However, I'm not able to make it work the way I wanted to. Basically I want my addon to be instalable in all platforms except ios. Tried almost all the possible combinations like:
<platform>linux,osx,android,wingl,windx</platform>
<platform>linux;osx;android;wingl;windx</platform>
<platform>(linux,osx,android,wingl,windx)</platform>
<platform>[linux,osx,android,wingl,windx]</platform>

or even repeating the platform tag:

<platform>linux</platform>
<platform>android</platform>
....but ain't lucky.

Is this really possible to do or is the wiki wrong? If it's not available could it be a feature request?

Many thanks in advance
Reply
#2
Space.Wink See language tag right below for example
Reply
#3
Wow it was that simple. Thanks takoi
Reply

Logout Mark Read Team Forum Stats Members Help
How to specify several platforms at once on addon.xml?0