I'm currently building an application for Android Wear where the user can edit some settings only if the GPS on the handheld is enabled. I'm wondering whether I can enable the GPS programatically by asking permission on the Smartwatch, instead of having to redirect the user to the handheld's screen to accept or decline the request.
I created the following mockup to illustrate the flow that I want to accomplish:
I have the following questions, I have also added a 1* and 2* to the image to illustrate where my question applies:
1*: Is it possible to check whether the handheld GPS is enabled on the Smartwatch? If not, do I have to construct a custom request to the handheld, check availability on the handheld and return true or false to the smartwatch myself?
2*: Is this possible, or do I really have to redirect the user to his or her handheld device to turn on the GPS? I couldn't really find any documentation on this, but it would seem that Google would (or should) have thought about this.
Any help is appreciated, thanks in advance.