Skip to content

Commit ac950c9

Browse files
author
AWS
committed
AWS SDK for Android 2.3.8
1 parent a74118c commit ac950c9

File tree

39 files changed

+171
-99
lines changed

39 files changed

+171
-99
lines changed

.github/CONTRIBUTING.md

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
# Contributing to the AWS SDK for Android
2+
3+
We work hard to provide a high-quality and useful SDK, and we greatly value feedback and contributions from our
4+
community. Whether it's a new feature, correction, or additional documentation, we welcome your pull requests.
5+
Please submit any [issues][issues] or [pull requests][pull-requests] through GitHub.
6+
7+
## What you should keep in mind
8+
9+
1. The SDK is released under license as described in [license] file in the root directory. Any code you submit will be released under that license. For substantial contributions, we may ask you to sign a [Contributor License Agreement (CLA)][cla].
10+
2. We try to maintain a high percentage of code coverage in our unit tests. If you make changes to the code, please add, update, and/or remove unit tests as appropriate.
11+
3. We may choose not to accept pull requests that change core services, such as files under `aws-android-sdk-s3/src/main/java/com/amazonaws/services/s3`.
12+
We generate these files based on our internal knowledge of the AWS services. If there is something incorrect
13+
with or missing from a service description, it may be more appropriate to [submit an issue][issues].
14+
4. If your code does not include adequate tests, we may ask you to update your pull requests before we accept them. We also reserve the right to deny any pull requests that do not align with our standards or goals.
15+
5. If you would like to implement support for a significant feature that is not yet available in the SDK, please talk to us beforehand to avoid any duplication of effort.
16+
17+
## What we are looking for
18+
19+
We are open to anything that improves the SDK and doesn't unnecessarily cause backwards-incompatible changes. If you are unsure if your idea is something we would be open to, please ask us; Open an issue, send us an email. Specifically, here are a few things that we would
20+
appreciate help on:
21+
22+
1. **Docs** – We greatly appreciate contributions to our documentation. The docs are written as code comments. You can also help us improving our [developer guide][developerguide]
23+
2. **Tests** – We maintain high code coverage, but if there are any tests you feel are missing, please add them.
24+
3. **Convenience features** – Are there any features you feel would add value to the SDK? Contributions in this area would be greatly appreciated.
25+
4. If you have some other ideas, please let us know!
26+
27+
[issues]: https://github.com/aws/aws-sdk-android/issues
28+
[developerguide]: https://github.com/awsdocs/aws-android-developer-guide/
29+
[pull-requests]: https://github.com/aws/aws-sdk-android/pulls
30+
[license]: https://github.com/aws/aws-sdk-android/blob/master/LICENSE.txt
31+
[cla]: http://en.wikipedia.org/wiki/Contributor_License_Agreement

.github/ISSUE_TEMPLATE.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
### To help us solve your problem better, please answer the following list of questions.
2+
3+
* What service are you using?
4+
5+
* In what version of SDK are you facing the problem?
6+
7+
* Is the issue limited to Simulators / Actual Devices?
8+
9+
* Can your problem be resolved if you bump to a higher version of SDK?
10+
11+
* Is this problem related to specific Android/OS version?
12+
13+
* Can you give us steps to reproduce with a minimal, complete, and verifiable example? Please include any specific network conditions that might be required to reproduce the problem.
14+
15+
* Please include a stacktrace if applicable.
16+
17+
If you need help with understanding how to implement something in particular then we suggest that you first look into our [developer guide](https://docs.aws.amazon.com/mobile/sdkforandroid/developerguide/). You can also simplify your process of creating an application by using [Mobile Hub](https://console.aws.amazon.com/mobilehub/home#/).

aws-android-sdk-apigateway-core/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,15 +12,15 @@
1212
<parent>
1313
<groupId>com.amazonaws</groupId>
1414
<artifactId>aws-android-sdk-pom</artifactId>
15-
<version>2.3.7</version>
15+
<version>2.3.8</version>
1616
</parent>
1717

1818
<dependencies>
1919
<dependency>
2020
<groupId>com.amazonaws</groupId>
2121
<artifactId>aws-android-sdk-core</artifactId>
2222
<optional>false</optional>
23-
<version>2.3.7</version>
23+
<version>2.3.8</version>
2424
</dependency>
2525
</dependencies>
2626

aws-android-sdk-autoscaling/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,15 +12,15 @@
1212
<parent>
1313
<groupId>com.amazonaws</groupId>
1414
<artifactId>aws-android-sdk-pom</artifactId>
15-
<version>2.3.7</version>
15+
<version>2.3.8</version>
1616
</parent>
1717

1818
<dependencies>
1919
<dependency>
2020
<groupId>com.amazonaws</groupId>
2121
<artifactId>aws-android-sdk-core</artifactId>
2222
<optional>false</optional>
23-
<version>2.3.7</version>
23+
<version>2.3.8</version>
2424
</dependency>
2525
</dependencies>
2626

aws-android-sdk-cloudwatch/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,15 +12,15 @@
1212
<parent>
1313
<groupId>com.amazonaws</groupId>
1414
<artifactId>aws-android-sdk-pom</artifactId>
15-
<version>2.3.7</version>
15+
<version>2.3.8</version>
1616
</parent>
1717

1818
<dependencies>
1919
<dependency>
2020
<groupId>com.amazonaws</groupId>
2121
<artifactId>aws-android-sdk-core</artifactId>
2222
<optional>false</optional>
23-
<version>2.3.7</version>
23+
<version>2.3.8</version>
2424
</dependency>
2525
</dependencies>
2626

aws-android-sdk-cognito/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,14 @@
66
<artifactId>aws-android-sdk-cognito</artifactId>
77
<packaging>jar</packaging>
88
<name>AWS SDK for Android - Amazon Cognito Sync</name>
9-
<version>2.3.7</version>
9+
<version>2.3.8</version>
1010
<description>The AWS Android SDK for Amazon Cognito Sync module holds the client classes that are used for communicating with Amazon Cognito Sync Service</description>
1111
<url>http://aws.amazon.com/sdkforandroid</url>
1212

1313
<parent>
1414
<groupId>com.amazonaws</groupId>
1515
<artifactId>aws-android-sdk-pom</artifactId>
16-
<version>2.3.7</version>
16+
<version>2.3.8</version>
1717
</parent>
1818

1919
<licenses>
@@ -29,7 +29,7 @@
2929
<groupId>com.amazonaws</groupId>
3030
<artifactId>aws-android-sdk-core</artifactId>
3131
<optional>false</optional>
32-
<version>2.3.7</version>
32+
<version>2.3.8</version>
3333
</dependency>
3434
<dependency>
3535
<groupId>com.google.android</groupId>
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
fabric-identifier=com.amazonaws.aws-android-sdk-cognito
2-
fabric-version=2.3.7
2+
fabric-version=2.3.8
33
fabric-build-type=binary

aws-android-sdk-cognitoidentityprovider/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,14 @@
66
<artifactId>aws-android-sdk-cognitoidentityprovider</artifactId>
77
<packaging>jar</packaging>
88
<name>AWS SDK for Android - Amazon Cognito Identity Provider</name>
9-
<version>2.3.7</version>
9+
<version>2.3.8</version>
1010
<description>The AWS Android SDK for Amazon Cognito Identity Provider module holds the client classes that are used for communicating with Amazon Cognito Identity Provider Service</description>
1111
<url>http://aws.amazon.com/sdkforandroid</url>
1212

1313
<parent>
1414
<groupId>com.amazonaws</groupId>
1515
<artifactId>aws-android-sdk-pom</artifactId>
16-
<version>2.3.7</version>
16+
<version>2.3.8</version>
1717
</parent>
1818

1919
<licenses>
@@ -29,7 +29,7 @@
2929
<groupId>com.amazonaws</groupId>
3030
<artifactId>aws-android-sdk-core</artifactId>
3131
<optional>false</optional>
32-
<version>2.3.7</version>
32+
<version>2.3.8</version>
3333
</dependency>
3434
<dependency>
3535
<groupId>com.google.android</groupId>

aws-android-sdk-core/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<parent>
1313
<groupId>com.amazonaws</groupId>
1414
<artifactId>aws-android-sdk-pom</artifactId>
15-
<version>2.3.7</version>
15+
<version>2.3.8</version>
1616
</parent>
1717

1818
<dependencies>

aws-android-sdk-core/src/main/java/com/amazonaws/internal/config/InternalConfig.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -118,6 +118,7 @@ private static Map<String, HttpClientConfig> getDefaultHttpClients() {
118118
ret.put("AWSIotClient", new HttpClientConfig("execute-api"));
119119
ret.put("AmazonLexRuntimeClient", new HttpClientConfig("runtime.lex"));
120120
ret.put("AmazonPinpointClient", new HttpClientConfig("mobiletargeting"));
121+
ret.put("AmazonPinpointAnalyticsClient", new HttpClientConfig("mobileanalytics"));
121122
return ret;
122123
}
123124

0 commit comments

Comments
 (0)