aws_s3_upload
A simple, convenient package for uploading to S3.
Heavily inspired by this stackoverflow answer
Getting Started
Having created credentials on AWS, upload a file like so:
AwsS3.uploadFile(
accessKey: "AKxxxxxxxxxxxxx",
secretKey: "xxxxxxxxxxxxxxxxxxxxxxxxxx",
file: File("path_to_file"),
bucket: "bucket_name",
region: "us-east-2"
);