hpique
hpique

Reputation: 120324

Using Amazon Simple Storage Service (S3) on 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?

Upvotes: 5

Views: 3633

Answers (3)

Eric Brynsvold
Eric Brynsvold

Reputation: 3090

There is now an Amazon-supported Android SDK: http://aws.amazon.com/sdkforandroid/ . It's only been out since the end of 2010, but it seems to work well - it allowed me to easily upload a photo to S3.

Upvotes: 4

matt-oakes
matt-oakes

Reputation: 3856

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.

Upvotes: 1

Toni Menzel
Toni Menzel

Reputation: 774

I think any S3 Java API should do it ? Look at the docs for Java API Libraries.

Upvotes: 0

Related Questions