What's the best way to use Amazon Simple Storage Service (S3) on Android?
For iPhone I use ASIHTTPRequest. Is there something similar for Android?
What's the best way to use Amazon Simple Storage Service (S3) on Android?
For iPhone I use ASIHTTPRequest. Is there something similar for Android?
I think any S3 Java API should do it ? Look at the docs for Java API Libraries.
To be honest I think if no library exists which works with android you will need to just roll your own. Take a look at the REST API and implement just the methods that you need for your application.
Doing it this way is more work but you will keep the filesize of your application down.