Carl S
Carl S

Reputation: 33

How to use kivy to open default Android apps?

I am currently developing an app for Android, and I would like to make it so that when the user clicks on a button within the app, they are redirected to the default Android clock app, where they can set up reminders for themselves. Is there any way that Kivy can access those default apps?

Upvotes: 2

Views: 1939

Answers (1)

inclement
inclement

Reputation: 29478

You probably need to construct an appropriate intent, as described at e.g. Intent to launch the clock application on android , but you can do this from Python via pyjnius instead of by writing java code directly. I have an example that you might find useful here, which creates an intent using pyjnius, but in this case for sending an email rather than opening an app.

Upvotes: 0

Related Questions