[email protected] wrote: > I am developing an Android application that collects accelerometer > sensor readings. I need to somehow get this data from the phone to a > desktop computer. I want to have a "Send" button that sends the data. > > The closest I have come is that if put the data in the image Content > Provider and say it's a jpeg (it's not), then I can email that as an > attachment from gmail. > > But that is not an acceptable thing to ask users to do.
Write a Web service to collect the data, and use URLConnection or HttpClient to send the data to the Web service. -- Mark Murphy (a Commons Guy) http://commonsware.com | http://twitter.com/commonsguy Android 1.5 Programming Books: http://commonsware.com/books.html --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Android Beginners" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-beginners?hl=en -~----------~----~----~----~------~----~------~--~---

