I'm trying to make use of the AWS S3 storage to store images for a mobile app, but I'm not able to compile my app. I have the .jar files in my libs directory. In the dependencies section of my build.gradle file I have:
dependencies {
compile "com.amazonaws.services.s3:1.6.1"
}
I've tried every combination I can think of. com.amazonaws.services.s3:1.6.1, com.amazonaws.services:s3:1.6.1, com.amazonaws:services:1.6.1...but I always get an error about that says Could not find com.amazonaws.services.s3:1.6.1. (with whatever I put on the compile line in the error).
I can't find anything about getting this SDK to work with Android Studio and don't really know enough about Gradle to know how to get it to work. Any suggestions? Anyone already have this working?