I am implementing imports using google docs (data api). Has anyone had an issue with apple accepting your app to the store if you are using this API? I found this a far easier method then trying to get FTP Networking to work properly.
Nothing in the Apple terms that prevent you from using it but you should check the Google Data API terms to see if its allowed to be used in a mobile application.
They have tutorials on how to use the GData libraries in iPhone apps, so simply using it on a mobile device doesn't violate any terms. http://code.google.com/p/gdata-objectivec-client/ http://code.google.com/p/gdata-obje...eLibrary#Linking_to_the_iPhone_Static_Library
I'm trying to build for anything but debug and i keep getting errors with not having other c flags set to have : #if !DEBUG #if GDATA_INCLUDE_nameServiceHere_SERVICE && !GDATA_SUPPRESS_INCLUDE_WARNING #error The service placeholder compiler flag should be replaced by actual service specifications #endif #endif Which in my project settings i have other c flags to have the following : Other C Flags: -DGDATA_REQUIRE_SERVICE_INCLUDES=1 -DGDATA_INCLUDE_DOCS_SERVICE=1 Just like the documents say.... Am I missing something else here?