twilight0
Lurker
I am a kodi addon developer and I believe I have skills more than average when it comes to Python. I am the sole maintainer of the AliveGR addon, the most popular greek addon around the world.
On Android I still suck... I am able to call an android activity from within Kodi with very specific intent, data uri and package name, but how can I call the default app for twitter, facebook or even a web browser?
Example:
Where package_name could be 'com.google.chrome' and url could be 'facebook.com'
Is there something "generic" package name which I can call and launch respective application?
On Android I still suck... I am able to call an android activity from within Kodi with very specific intent, data uri and package name, but how can I call the default app for twitter, facebook or even a web browser?
Example:
Code:
control.execute('StartAndroidActivity("package_name","android.intent.action.VIEW","","url")')
Where package_name could be 'com.google.chrome' and url could be 'facebook.com'
Is there something "generic" package name which I can call and launch respective application?