Reputation: 21
I want to test my Android app using a local AWS simulation package such as FakeS3 before moving to real Amazon S3 servers.
What do you need to change/configure in the AWS SDK (aws-android-sdk) package in order to get it working with FakeS3?
Has anyone already done this and got it working?
Upvotes: 2
Views: 351
Reputation: 9020
As FakeS3
is simply emulating the S3 service, you should simply be able to create an S3 client and set the endpoint on the client to use your server running FakeS3. You can refer to the client docs here:
Upvotes: 1