You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Allow `Amazon CloudWatch Logs` SDK to be fetched via maven. See [issue #392](https://github.com/aws/aws-sdk-android/issues/392)
9
+
10
+
### Enhancements
11
+
12
+
***Amazon Cognito Identity Provider**
13
+
* Repackaged Amazon Cognito Identity Service Provider Android SDK to change dependency for ASF components.
14
+
15
+
***Amazon Cognito Auth**
16
+
* Repackaged Amazon Cognito Auth Android SDK to change dependency for ASF components. Use `{ transitive = true; }` while importing `aws-android-sdk-cognitoauth` via maven in gradle.
Copy file name to clipboardExpand all lines: README.md
+13-9Lines changed: 13 additions & 9 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -14,7 +14,7 @@ The [AWS SDK for Android](http://aws.amazon.com/sdkforandroid) provides a librar
14
14
15
15
***[Code Samples](https://github.com/awslabs/aws-sdk-android-samples)** - Repository of example projects using the SDK.
16
16
***[AWS Mobile Forum](https://forums.aws.amazon.com/forum.jspa?forumID=88)** – Ask questions, get help, and give feedback
17
-
***[Developer Guide](http://docs.aws.amazon.com/mobile/sdkforandroid/developerguide/)** - For in-depth getting started and usage information.
17
+
***[Developer Guide](https://docs.aws.amazon.com/aws-mobile/latest/developerguide/getting-started.html)** - For in-depth getting started and usage information.
18
18
***[Javadoc](http://docs.aws.amazon.com/AWSAndroidSDK/latest/javadoc/)** - For operations, parameters, responses, and examples
19
19
***[AWS Mobile Developer Blog](http://mobile.awsblog.com/)** - For updates and guidance on using the AWS SDK for Android
20
20
***[Release Notes](https://aws.amazon.com/releasenotes/Android)** - To see the latest features, bug fixes, and changes in the SDK
@@ -29,29 +29,33 @@ This section explains how to understand and work with the various components of
29
29
30
30
The AWS SDK for Android supports the following AWS services:
31
31
32
+
*[Amazon API Gateway](https://aws.amazon.com/api-gateway/)
33
+
*[Amazon Auto Scaling](https://aws.amazon.com/autoscaling/)
@@ -95,7 +99,7 @@ private class S3Example extends AsyncTask<Void,Void,Void>{
95
99
### SDK Fundamentals
96
100
There are only a few fundamentals that are helpful to know when developing against the AWS SDK for Android.
97
101
98
-
* Never embed credentrials in an Android application. It is trivially easy to decompile applications and steal embedded credentials. Always use temporarily vended credentials from services such as [Amazon Cognito Identity](http://docs.aws.amazon.com/mobile/sdkforandroid/developerguide/cognito-auth.html).
102
+
* Never embed credentrials in an Android application. It is trivially easy to decompile applications and steal embedded credentials. Always use temporarily vended credentials from services such as [Amazon Cognito Identity](https://docs.aws.amazon.com/cognito/latest/developerguide/cognito-identity.html).
99
103
* Unless explicitly stated, calls are synchronous and must be taken off of the main thread.
100
104
* Unless explicitly stated, calls can always throw an AmazonServiceException or an AmazonClientException (depending on if the exception is generated by the client or the service).
101
105
* The SDK will handle re-trying requests automatically, but unless explicitly stated will throw an exception if it cannot contact AWS.
0 commit comments