Android :: Google Apps For Document Edit And Upload On Android
Aug 2, 2009
I'm rather surprised there's no Google Apps for the Android where I can edit documents and upload them? Does anyone know if there are plans to implement anything for this?
View 4 Replies
Apr 20, 2012
I'm not talking about the 50mb per apk limit but when uploading the next of several 100kb separate apps i got "Upload limit has been reached. Please try again later."
What's the limit and when you can upload again?
View 2 Replies
View Related
Feb 5, 2010
I am working on an app where the user inputs some numbers, my app performs a few relevant calculations, and displays the result. However, I would like it if the user could somehow save this value to a Google Spreadsheet.My problem is, I have no idea how to authenticate with Google. I have been Goggle'ing this for awhile, and found: http://code.google.com/apis/documents/docs/3.0/developers_guide_proto.However, when I try to use the command ClientLogin in my code, it tells me this is undefined. I have the Build set to SDK 7, which is Android+Google, and I have: import google.*; (I did this just to play it safe); Anyway, I would appreciate any help I could get. If there are any tutorials or code snippets out there that can help, please send me the link. This is the first time I am attempting something like this (I am a C++ developer who works on offline applications).
View 3 Replies
View Related
Nov 27, 2009
My earlier phone saved the sim contacts in a really bad way, long story short - when I search them on my new android phone [htc hero], they are all messed up.. I want to download them to my computer, edit them, and upload them back to the phone, how can I do that?
Reminder: not talking about google contacts or anything like that, i'm talking about contacts that are saved on my SIM card.
View 3 Replies
View Related
Jun 15, 2010
I did a quick search and couldn't find anything similar to this thread. I am taking a four day train trip across the country (The US) in August and I was wondering what apps would be best to document this? My ideal goal would be to have my route tracked, perhaps Google Maps Integration somehow, and also have pictures/text messages from along the way put onto the map wherever they were taken/written. I would like this to be viewable by friends/family online as the trip is happening.If I can't get the route tracked, that's fine, but I would like someway to display the pictures/texts from along the trip.What App or combination of apps would you guys recommend I use to accomplish this?I am familiar with WordPress and have used the Android Wordpress App a bit, but not too in depth. Would I be able to use this? Or is there a better way?Oh, and one more thing, unrelated. I noticed some apps (Google Voice for example) listed "Services that cost you money" as one thing they have access too. What exactly does this mean?
View 12 Replies
View Related
Nov 22, 2012
just trying out Google Play Music today. I'm confused though as I have around 10000 music files sitting in a folder on Google drive. I can't see an option to ask Google Play Music to look into Google Drive and upload the music from there. I have connected my Google play music app on my nexus 7 to my Google account' but nothing seems to happen. Surely Google is able to connect two parts of its cloud together and I don't have to re upload everything?
View 1 Replies
View Related
Nov 23, 2010
We develop apps for mobile phones and have just started for android as well. We would like to upload a free version and a paid version, but India is still not allowed for paid apps to be uploaded. We have a US office coming up soon (but can't say when)...
In view of this, is it possible to upload an app (free version) now, and then when the US office comes in, upload the paid version? Or will the Indian developer registration in the market preclude this possibility?
View 3 Replies
View Related
Oct 29, 2009
I am new to google android will anyone please tell me how to edit google android code to develop my own applications?
View 4 Replies
View Related
Nov 16, 2010
More specifically I want to edit the Settings.apk and add more options. I'm unsure what the best approach to this is. I know how to convert the classes.dex to a .jar, but this doesn't seem like the way to go about accomplishing anything. At any rate, I'm really looking for some insight into this and advanced editing such as this. Someone knows how to, care to share?
View 1 Replies
View Related
Jul 15, 2010
I'm trying to implement some basic functionality for Google Spreadsheets,using the protocol specification with requests.The reason i'm doing this because it is for Android, and gdata-java library doesn't really work and the alpha android one doesn't really cut it.I managed to implement authentication, and get for lists, and delete, but for editing updating a row i can't really wrap my mind around it.For example i want to change the contents of a cell here is the specification for the protocol From my understanding of it, i have to send some sort of atom or xml formatted request to the edit URL. I never sent such type of requests. I also found this, which gives a clue on how it should be done (also an unanswered question on a forum), but didn't really managed it.Here is my authentication function if you need it, so you don't implement it again, if you want to try and code it.
/*** Logs in to the Google service using the ClientLogin HttpRequest API and returns an authentication token */ private String getAuthToken() {HttpClient httpclient = new DefaultHttpClient();HttpPost httppost = new HttpPost(CLIENT_LOGIN_ADDRESS);
List<NameValuePair> nameValuePairs = new ArrayList<NameValuePair>();
nameValuePairs.add(new BasicNameValuePair("accountType", "GOOGLE"));
nameValuePairs.add(new BasicNameValuePair("Email", "username@gmail.com"));
nameValuePairs.add(new BasicNameValuePair("Passwd", "password"));
nameValuePairs.add(new BasicNameValuePair("service", "wise"));
nameValuePairs.add(new BasicNameValuePair("source", SERVICE_NAME));
try {httppost.setEntity(new UrlEncodedFormEntity(nameValuePairs));This currently gives a 400 Bad request.Also I'm trying to achieve this using Apache HttpClient. Does anyone have any idea on how this might be achieved implemented how what request i should send?
View 2 Replies
View Related
Jan 29, 2010
Can I use the sample apps and edit them to publish them on the market?
View 2 Replies
View Related
Nov 1, 2013
how to decompile system apps with apktool for android....
View 2 Replies
View Related
Feb 11, 2010
I have them filtered on the Handset so that only those marked as Friends or Family under Gmail contacts are shown. I can't help this as otherwise I'd have well over 1000 contacts to scroll through on my phone.
My issue is that should I add a contact on my phone it doesn't appear. This is obviously because when it's created it has no group membership. It still resolves against SMS etc but is not displayed in the Contacts list. I can (when near a computer) quickly jump onto gmail, manage contacts and put the person into the right group but ideally I'd like to be able to do this on the handset.
Is there any way at all of editing Google Contact Group membership on the handset? I certainly can't find the option if it exists. Alternatively is it possible to change it so when the contact is create on the handset that it automatically saves as a 'Friend'.
View 1 Replies
View Related
Jan 25, 2010
I'd like to confirm if those are apps built by Google for GDoc (Google Documents) GTask (Google Task)Any apps for integrating with Google Picasa? If you know any other Google apps,
View 1 Replies
View Related
Jul 20, 2010
I'd like to allow my Android app to upload a spreadsheet document to Google Docs. Using a simple Uri request:
Uri uri = Uri.parse("http://docs.google.com/DocAction?action=updoc&hl=en");
Intent intent = new Intent(Intent.ACTION_VIEW, uri);
startActivity(intent);
And this page appears as blank on a phone (must use code not compatible with phones).
I've looked into the Google Docs procedures for uploading from a Web Service. They require first authenticating the user and retrieving an AuthSub authorization to be used in a following POST request (including the AuthSub token) to actually upload the doc. This is easy from a Web Service that can guarantee a URL to return the AuthSub to, but how about on a mobile phone? Currently thinking that I'll use UrlConnection, use getHeader(String) to grab the AuthSub, then build the entire document dynamically like this:
POST /feeds/default/private/full HTTP/1.1
Host: docs.google.com
GData-Version: 3.0
Authorization: <your authorization header here>
Content-Length: 73612
Slug: test.xls
Content-Type: application/vnd.ms-excel
<?xml version='1.0' encoding='UTF-8'?>
<Worksheet ss:Name="Sheet1">
<Table ss:ExpandedColumnCount="4" ss:ExpandedRowCount="4" x:FullColumns="1" x:FullRows="1">
<Row>
<Cell><Data ss:Type="String">IN</Data></Cell>
<Cell><Data ss:Type="String">OUT</Data></Cell>
<Cell><Data ss:Type="String">TIME</Data></Cell>
<Cell><Data ss:Type="String">SUBTOTAL</Data></Cell>
</Row>
<Row>
<Cell><Data ss:Type="String">Value</Data></Cell>
<Cell><Data ss:Type="Number">123</Data></Cell>
<Cell><Data ss:Type="String">Example</Data></Cell>
<Cell><Data ss:Type="String">Example</Data></Cell>
</Row>
</Table>
</Worksheet>
View 1 Replies
View Related
Apr 26, 2010
I'm planning to become android developer w/ Android 2.1 SDK For some reason I like to AT&T network. Since Motorola backflip is the only phone available on AT&T and reading recent reports that it only allows apps to be downloaded from Android Marketplace
I've a basic yet very important question:
Is it possible for a developer to write an app and upload to the device? If so my next doubt is how would I upgrade the OS from Android 1.5 to Android 2.1 on my backflip device?
View 8 Replies
View Related
Oct 16, 2010
Quick question, can you add / delete applications in a ROM or would it break something? For example, if I downloaded fresh, extracted the zip, and deleted /system/app/HTCFacebook.apk then flashed the rom. Would this work or do I have the potential of breaking something bigger behind the scenes?
View 4 Replies
View Related
Oct 26, 2010
In editText I set text as $ . I dont want to edit before $ symbol . i.e edit text doesnt want take any value before $ . ex: $adfdfd correctad$dsdff wrong .like this . how to restrict this one .
View 2 Replies
View Related
Mar 20, 2010
Well many of us might not aware of power Android to edit your photos on Phone which we normally do on PC/Notebook. Here I am sharing two Cool Android Apps review which help to edit your pictures.
View 3 Replies
View Related
Nov 28, 2012
Is it possible to upload just 1 or 2 songs to the Google Music app? Also I am debating to whether or not to just delete everything on my Google Play list and then just reupload my whole iTunes Library so it mimicks that?
View 13 Replies
View Related
Jan 4, 2012
I've been trying to upload my music to Google Music, and I ran into an issue yesterday when I saw that it stopped uploading. I had it running for about a week and I have roughly 3700 songs on my computer (in iTunes). It stopped at around 2400 songs and won't add anymore, and I'm not entirely sure why. Of those 3700 songs, only about 300 were purchased from iTunes, the rest are CDs or songs that I permanenly borrowed during the Napster days. I double checked the songs that are missing, and there really isn't too much rhyme or reason as to why they're not there.
View 7 Replies
View Related
Jan 24, 2013
I'm having an issue syncing my contacts. I have my phone set to sync contacts with my Google account; however, whenever I add new contacts to the phone they are never added to my Google account. I will press sync now and everything (including contacts) will claim to have successfully synced although my newly added contacts from the phone remain local (on the phone but not on my Google account). Why won't my contacts get automatically added/uploaded?
SAMSUNG Galaxy Note II
View 6 Replies
View Related
Nov 5, 2013
I just uploaded a 1.5GB file to my Drive by mistake, now I can't cancel it except by rebooting my phone. If I start up the Drive app the upload restarts. I explored the Drive app but it seems there's no way to cancel an on-going upload.
View 3 Replies
View Related
Apr 16, 2012
How google + select files for instant upload?
Will it upload new movies transferred to the device via USB transfer mode to the google + gallery?
Currently I see that the wallpapers I download gets uploaded to google +, but if this happens to movies, that is bad.
View 1 Replies
View Related
Jun 7, 2010
I have successfully edited a spreadsheet in google docs. I thought it can't be done, but I was quite surprised that I was able to edit my xls files online with my Evo.I'm not sure if this was general knowledge. But I was quite happy to discover I can edit google docs via browser.
View 9 Replies
View Related
Oct 16, 2013
How does one shut off auto pic upload to Google!
View 1 Replies
View Related
Jan 30, 2014
The question is in the title : is it possible to upload mp3 i have on my device, to my music account, straight from the device ?
View 2 Replies
View Related
Nov 17, 2012
is it possible to automatically upload pictures to google drive?
View 7 Replies
View Related
May 20, 2014
It's there a way to auto-upload full size videos to Google+ like the photos do?
EVERY single VIDEO the Google+ (Google Photos, whatever its called) app auto-uploads the resolution is changed to either 640x480 or 480x480.
View 1 Replies
View Related
Jan 23, 2014
I currently have 3059 songs on my iTunes, and only 3046 of it was uploaded meaning that only 13 songs weren't uploaded.
View 9 Replies
View Related