Kurt Wagner
Kurt Wagner

Reputation: 3315

Can You Set Up Android Studio/SDK Manager to check for/get the latest rev of AWS SDK for Android?

So I'm going to start experimenting with AWS SDK for Android from Amazon and while I imagine it's quite stable and bug free by this point, I want to setup my environment (Android Studio) to check for the latest version of AWS SDK for Android just in case there are package updates while developing. I looked around on the AWS SDK for Android SDK getting started page and there doesn't seem to be anything about this described, even for working in Eclipse which I know should support this kind of functionality.

Is it even possible with Android Studio and the SDK Manager to be setup such that it checks for the latest packages of the AWS SDK, does Amazon host their SDK for Android somewhere it's pullable from in such a fashion, and if so, how do I do it?

Upvotes: 4

Views: 642

Answers (1)

Dan Ciborowski - MSFT
Dan Ciborowski - MSFT

Reputation: 7207

So really your best bet here is to pick the current SDK build and stick with it. You aren't exactly sure what they might change, and it might have unexpected issues in your code. Even when you use a dependency management like Maven, you rarely change the version of your dependencies.

But, if you want to stay up to date, your best bet is to check it out from their GIT repo, and stay current that way.

https://github.com/aws/aws-sdk-android

It provides you a link to this repo here... http://aws.amazon.com/sdkforandroid/

Upvotes: 2

Related Questions