Google cloud storage integration in iPhone App - iphone

I'm developing an iPhone Application where I want to integrate google cloud storage so that I can store images. Please anyone can help me or provide me the link of sample. I tried searching but could not find.
Thanks

I recommend using the Google APIs Client Library for Objective-C. It uses the JSON API. You will need to enable the JSON API by visiting the Cloud Console, clicking APIs, and enabling the "Google Cloud Storage JSON API"

There is no specific library or sdk for Cloud integration but there is a web based interface you can integrate for google cloud. you'll have to read about it a little. here's the link
https://developers.google.com/storage/

Related

Google cloud platform for unity games

I am planning to use Google Cloud Platform features like Cloud Speech-to-Text, Cloud Text-to-Speech, Cloud Video Intelligence, Cloud Sentiment Analysis, and Cloud Vision in my unity games. Is there any UNITY SDK available for the above mentioned features.
If not what is the other way to use the above mentioned functions in my Unity games?
Thanks
With respect to Unity, you can look at the following list of integration tools related to Google Cloud products.
If you are not willing to purchase them or want to come up with your own solution, you can make API calls to the desired Google Cloud services.
Its is also possible to use C# client libraries for Google Cloud Video Intelligence, Google Cloud Vision, Google Cloud Natural Language, Google Cloud Speech-to-Text (there is no C# client library for Google Cloud Text-to-Speech yet, therefore API calls are the only option right now).
you can also look at this assets: Frostweep Games - Google Cloud Machine Learning Plugins

How to use SFSmartStore for offline data storage in native iOS application?

I am working on salesforce application. In my application, i need to store data locally for offline supporting. For this, i have seen some forums to achieve offline data storing and retrieving using sales fore smart store setup. Can anybody give some guidance how to use smart store for offline supporting.
Thanks in advance.
To use smart store you need Salesforce Mobile SDk configured (for Android OR iOS)
after that please install the account editor example and study the code in here Account Editor Example secondly,
Using StoreCache For Offline Caching tutorial explains how smartstore works.

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.

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.

zend framework & google analytics data

How can I use zend framework to export google analytics data into my application? I've used other Zend_Service_GData before, but can't find any documentation how to apply it to google analytics?
Is this possible?
There is no official library for google analytics, but you could have a look at:
http://framework.zend.com/wiki/display/ZFPROP/Zend_Gdata_Analytics+-+Daniel+Hartmann
It hasn't been updated in a while, but I've used it without problems before.