Reputation: 3192
I am developing an application,that should communicate with Samsung Gear watch/wear to get all activity details ( step,calories and more ) from android. I have come up with Accessible SDK.
Someone help on this find the concrete example or solution, should be appreciated.
I referred this too https://stackoverflow.com/a/40529913 But in this example, they provider a (wearable app ) and consumer app ( android app). Is there any solution without provider app.
Upvotes: 1
Views: 2099
Reputation: 482
As far as I know, there's no way to get the activity info from Gear watch without a wearable app. The Samsung Health App in Android sync the health data using it's corresponding Samsung Health app in the wearable device.
With a wearable app you can use Tizen Health API for retrieving the health activity information from the Gear device. You can use communicate it with your Android app using the methods mentioned above.
You can also research into Samsung Health SDK if you're interested.
Upvotes: 0
Reputation: 382
If you want to read ( step,calories and more ) from your Tizen wearable device you need a Tizen app on your Tizen device to read/extract those values.
Once you've got these sensor values make communication between those apps(Tizen, Android) like using Rest API or BLE.
Upvotes: 1