Google Fit REST API and Unity - unity3d

I have a game developed for me in Unity. The game pulls steps, blood pressure and glucose data. So far my developer have been able to pull health data from Apple Health Kit, but they are stuck with Google Fit. Does the Google Fit REST API work with Unity? Will I need my to create a plugin? Sorry, I have the code, but I would know what to show. I could ask my developer if that is needed. Thank you!

This is a great feature to extend Google SDK to the Unity platform. The official libraries do not exist yet, but suggested workaround is to use REST API. You may start working around with Google Fit API on the official docs. You can opt to use OAuth Playground or any API platform to start with. Once you establish communication with Google Fit, try to make a call between a client and a server with the help of RESTful API in Unity.

Related

How to create Augmented Reality Web app using Unity & Vuforia?

I am developing an Augmented Reality app to be integrated into a website using Unity.I need to take output in WebGL. I am using Vuforia to create AR experience. Since Vuforia is not supported with WebGL, i am not able to build. Please suggest an alternate method or how to do Augmented reality in Unity for Web. Is there any alternative to Vuforia?
The good news is yes, you definitely can build an AR experience on the web!
The bad news is that none of the current libraries built for doing so offer a Unity plugin.. Meaning you'll either have to create a wrapper, do some complicated RPC call to talk to the JS library via Unity, or completely scrap Unity altogether and use only the library. To my knowledge, the best browser-based AR library is AR.js. I know this isn't the answer you were hoping for, but I hope you're able to achieve your goals. Good luck!
This is probably a bit late in the thread. But I'd like to add an option which might help. You can definitely build your AR app in web using WebGL as output. There is easy way to integrate it with a webiste too. SLAM based AR like Google ARCore is a great example to do it.
There are two options:
You can build such an app from scratch which will obviously take more time. Because apart from development, setting up hosting infrastructure is a challenge.
Otherwise, if you want to scale such AR web app development with low or no code and cloud ready hosting, you can use a SaaS platform called Marvin XR.
You can login and try it out for FREE: https://www.marvinxr.com:8443
Hope this helps the other folks who stumble upon this thread.

Use Google Map in iPhone app created through PhoneGap

I need some guidance in matter of using Google map in creating iPhone app that is i m creating through Phonegap.
I have heard that Google maps can be used without internet connection by using Google map API.
My question is how to apply that functionality?
Any help will be appreciated.
Google maps api can not be used offline due to the terms of service.
If you cache the tiles it will be a terms violation. It can be done if you purchase the enterprise edition. Check this for more information on the subject. You might have to use something else if you absolutely must have that functionality.
You should check out openlayers. That might be of help.

How to integrate Salesforce in iphone app?

can any one help me in integrating salesforce in my app.I have made account in sales force and also created the remote-acces key.Can anyone tell how to ad objects ,dashboards etc in the iPhone app.I also want to know how to access the data on salesforce .for e.g. i want to get all the custom objects in salesforce and also want to create custom objects from iPhone app.Can anyone guide me in this respect.Any help is appreciated.
There are many ways to do it. I advice you to read carefully and choose the best way to do it.
Here are some links to read about it:
Making Salesforce and PayPal Work Together
SDK Project
Good Documentation and code
Salesforce provides mobiles SDK for iPhone, Android & hybrid platforms.
This SDK has samples on how to start with. There are lot of documentations available.
Basically the SDK helps to authenticate with Salesforce using oAuth, communicating with the objects using RestKit.
Refer the following URLs to start with..
Download the mobile SDK from the following URL.
https://github.com/forcedotcom/SalesforceMobileSDK-iOS
There is a discussion forum
http://boards.developerforce.com/t5/Mobile/bd-p/mobile
API docs
http://forcedotcom.github.com/SalesforceMobileSDK-iOS/Documentation/SalesforceSDK/index.html
Ref:
http://wiki.developerforce.com/page/Mobile_SDK

Google Drive vs Google Doc for iOS?

I have an iOS app that uses the Google Docs List API to access and download spreadsheet data. I've done a basic test with upgrading my Google Docs account to Google Drive, and everything still seems to be working okay.
Based on the answer for this question Google Document List API and Google Drive SDK it looks like things will continue to work for awhile.
Are there any steps that mobile devs should be taking now to move to the new API? My main concern is that most of the developer docs so far are related to web apps and not mobile apps so requirements like registering for the chrome web store don't seem to fit. For example:
"Warning: Apps will not have any API access to files unless the app has been installed in Chrome Web Store. To test an app during development, you must first create a listing and install it."
Any guidance or suggestions would be appreciated.
Check this answer for the rationale behind the Chrome Web Store installation: https://stackoverflow.com/a/10476737/186674
Also, we are considering removing the installation requirement for the development and testing phase, we should have some updates soon.
iOS apps using the Documents List API should now update to using the Google Drive API and the newer Google APIs Client Library for Objective-C.
The new API and library are quite a bit easier to use and more efficient than are the older GData alternatives.

Implement google earth in iphone?

I am implementing one iphone applicaiton in which I want to implement google earth.
I have done research on net for google earth for if any google earth api available or not.
But I have not found sucess.
Can you advice me is it possible to implement google earth in our applciation.
Please advice me for this.
Thanks in advance
I would suggest downloading the Google Earth app from:
http://itunes.apple.com/us/app/google-earth/id293622097?mt=8
However, if you still want to build an app, the Google Earth API documentation lies at:
http://code.google.com/apis/earth/
Google does not provide any API specifically for iPhone. This API is in JavaScript.
Reference