Can you customize the Android Studio / SDK Manager to check / get the latest AWS SDK for Android?

So, I'm going to start experimenting with the AWS SDK for Android from Amazon, and although I assume that by this time it is stable enough and error-free, I want to set up my environment (Android Studio) to check the latest version of the AWS SDK for Android on just in case the packages will be updated during development. I looked at the AWS SDK for the Android SDK to get started , and it doesn't seem to be talking about this, even for working in Eclipse which, as I know, should support such functionality.

Is it possible that Android Studio and the SDK Manager are set up to check the latest AWS SDKs, does Amazon make its Android SDK somewhere where it gets pulled in this way, and if so, how to do it?

+4
source share
1 answer

So in fact, your best bet is to choose the current version of the SDK and stick to it. You are not quite sure what they can change, and this can cause unexpected problems in your code. Even if you use dependency management such as Maven, you rarely change the version of your dependencies.

But, if you want to keep abreast of the latest developments, it is best to check this from your GIT repository and stay the same.

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

... http://aws.amazon.com/sdkforandroid/

+2

Source: https://habr.com/ru/post/1547092/


All Articles