I'm writing Multiple Add-ons for a personal build of KODI. What I am trying to achieve is:
- Service(Add-on A) will authenticate the box using its MAC Address.
- Service(Add-on A) will save a token(T1).
- Service(Add-on B) will use T1 and load movies if (T1 != None)
BUT xbmcplugin.setSetting( "token" ) AND xbmcplugin.getSetting( "token" ) saves the value in the context of Add-on where it was called.
HOW to achieve Saving Global Values in KODI with Python