All I want to do is upload a text file from my android app to my google drive cloud storage.
Google's idea of a simple example is one which takes a camera image directly and saves it on google drive. It involves media types and MIME and whatnot. I want to take a text file for which I know the path on Android and write it (ideally to a folder) on my cloud Google drive storage.
I have spent two days learning Google Drive api. I imported Google's example DriveQuickstart and made it work on my Nexus 7 putting a picture it took on Google Drive.
I simply can't believe that
1) this can't be done easily with an Intent, what BETTER use for reusing apps than to have an Intent that would access the Google Drive Android APP and put a local file on to drive? This is not something I should need to get in to API's for.
2) this can't be done easily with the API, or that a sample app for uploading any file despite its MIME type wouldn't be a more fundamental example than uploading a picture taken with the camera (and never permanently saved locally).
Anyway, I appreciate any simplifying help you can provide. Meanwhile, I continue trying to figure out how to modify DriveQuickstart to do what seems to me the simplest Drive task in the world.