I use Android SDK to upload files to AWS S3, and want enable transfer accelerate. I have read transfer acceleration examples but only found example for Java. I tried the Java code on Android but with no success:
AmazonS3Client s3Client = new AmazonS3Client(credentials, clientConfiguration);
S3ClientOptions s3ClientOptions = new S3ClientOptions();
s3ClientOptions.setAccelerateModeEnabled(true);
s3Client.setS3ClientOptions(s3ClientOptions);
Cannot resolve method 'setAccelerateModeEnabled'! The version of my aws-android-sdk-s3 is 2.2.16.
Is Transfer Acceleration supported on Android SDK? If yes, how should I do? Thanks.