Android check for updates
#1
Im fairly new to python coding and was messing around with an addon. I have two questions if anyone would mind helping me with.

First: I know there is a silent way of checking for addon updates with the first code but how can you do it with the progress bar like in the addon browser without having to physically open the window?
Example 1:
Code:
def ForceUpdate():
  xbmc.executebuiltin('UpdateAddonRepos()')
  xbmc.executebuiltin('UpdateLocalAddons()')
Example 2:
Code:
def ForceUpdate():
  xbmc.executebuiltin('ActivateWindow(addonbrowser)')
  xbmc.executebuiltin('Control.Message(9,click)')

Second: With the StartAndriodActivity is it possible to open ES File Explorer to the Downloads folder?
Code:
StartAndroidActivity(com.android.chrome,android.intent.action.VIEW,,http://kodi.tv/)
Reply

Logout Mark Read Team Forum Stats Members Help
check for updates0