2

This is a fairly broad question. Im looking to create a voice messaging app for android as an after work project. Does anyone know of any specific apis that might help in this endeavor? Ive been looking at the google cloud messaging service but that seems more for update notifications. Ive also taken a look at the volley library but that doesnt support large data transfers. If someone could point me in the right direction that would be awesome. Thanks!

sirFunkenstine
  • 8,135
  • 6
  • 40
  • 57

1 Answers1

1

For short messages, I guess you'll be fine sending common http requests. I'd try with ASIHttpRequest, which features asynchronous get/post request, progress bar for large request, ...

Best of lucks.

EDIT

My bad, ASIHttpRequest is iOS exclusive. You can try android-async-http instead.

ssantos
  • 16,001
  • 7
  • 50
  • 70