Skip to content

Commit

Permalink
AWS SDK for Android 2.3.8
Browse files Browse the repository at this point in the history
  • Loading branch information
AWS committed Dec 20, 2016
1 parent a74118c commit ac950c9
Show file tree
Hide file tree
Showing 39 changed files with 171 additions and 99 deletions.
31 changes: 31 additions & 0 deletions .github/CONTRIBUTING.md
@@ -0,0 +1,31 @@
# Contributing to the AWS SDK for Android

We work hard to provide a high-quality and useful SDK, and we greatly value feedback and contributions from our
community. Whether it's a new feature, correction, or additional documentation, we welcome your pull requests.
Please submit any [issues][issues] or [pull requests][pull-requests] through GitHub.

## What you should keep in mind

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].
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.
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`.
We generate these files based on our internal knowledge of the AWS services. If there is something incorrect
with or missing from a service description, it may be more appropriate to [submit an issue][issues].
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.
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.

## What we are looking for

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
appreciate help on:

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]
2. **Tests** – We maintain high code coverage, but if there are any tests you feel are missing, please add them.
3. **Convenience features** – Are there any features you feel would add value to the SDK? Contributions in this area would be greatly appreciated.
4. If you have some other ideas, please let us know!

[issues]: https://github.com/aws/aws-sdk-android/issues
[developerguide]: https://github.com/awsdocs/aws-android-developer-guide/
[pull-requests]: https://github.com/aws/aws-sdk-android/pulls
[license]: https://github.com/aws/aws-sdk-android/blob/master/LICENSE.txt
[cla]: http://en.wikipedia.org/wiki/Contributor_License_Agreement
17 changes: 17 additions & 0 deletions .github/ISSUE_TEMPLATE.md
@@ -0,0 +1,17 @@
### To help us solve your problem better, please answer the following list of questions.

* What service are you using?

* In what version of SDK are you facing the problem?

* Is the issue limited to Simulators / Actual Devices?

* Can your problem be resolved if you bump to a higher version of SDK?

* Is this problem related to specific Android/OS version?

* 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.

* Please include a stacktrace if applicable.

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#/).
4 changes: 2 additions & 2 deletions aws-android-sdk-apigateway-core/pom.xml
Expand Up @@ -12,15 +12,15 @@
<parent>
<groupId>com.amazonaws</groupId>
<artifactId>aws-android-sdk-pom</artifactId>
<version>2.3.7</version>
<version>2.3.8</version>
</parent>

<dependencies>
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-android-sdk-core</artifactId>
<optional>false</optional>
<version>2.3.7</version>
<version>2.3.8</version>
</dependency>
</dependencies>

Expand Down
4 changes: 2 additions & 2 deletions aws-android-sdk-autoscaling/pom.xml
Expand Up @@ -12,15 +12,15 @@
<parent>
<groupId>com.amazonaws</groupId>
<artifactId>aws-android-sdk-pom</artifactId>
<version>2.3.7</version>
<version>2.3.8</version>
</parent>

<dependencies>
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-android-sdk-core</artifactId>
<optional>false</optional>
<version>2.3.7</version>
<version>2.3.8</version>
</dependency>
</dependencies>

Expand Down
4 changes: 2 additions & 2 deletions aws-android-sdk-cloudwatch/pom.xml
Expand Up @@ -12,15 +12,15 @@
<parent>
<groupId>com.amazonaws</groupId>
<artifactId>aws-android-sdk-pom</artifactId>
<version>2.3.7</version>
<version>2.3.8</version>
</parent>

<dependencies>
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-android-sdk-core</artifactId>
<optional>false</optional>
<version>2.3.7</version>
<version>2.3.8</version>
</dependency>
</dependencies>

Expand Down
6 changes: 3 additions & 3 deletions aws-android-sdk-cognito/pom.xml
Expand Up @@ -6,14 +6,14 @@
<artifactId>aws-android-sdk-cognito</artifactId>
<packaging>jar</packaging>
<name>AWS SDK for Android - Amazon Cognito Sync</name>
<version>2.3.7</version>
<version>2.3.8</version>
<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>
<url>http://aws.amazon.com/sdkforandroid</url>

<parent>
<groupId>com.amazonaws</groupId>
<artifactId>aws-android-sdk-pom</artifactId>
<version>2.3.7</version>
<version>2.3.8</version>
</parent>

<licenses>
Expand All @@ -29,7 +29,7 @@
<groupId>com.amazonaws</groupId>
<artifactId>aws-android-sdk-core</artifactId>
<optional>false</optional>
<version>2.3.7</version>
<version>2.3.8</version>
</dependency>
<dependency>
<groupId>com.google.android</groupId>
Expand Down
@@ -1,3 +1,3 @@
fabric-identifier=com.amazonaws.aws-android-sdk-cognito
fabric-version=2.3.7
fabric-version=2.3.8
fabric-build-type=binary
6 changes: 3 additions & 3 deletions aws-android-sdk-cognitoidentityprovider/pom.xml
Expand Up @@ -6,14 +6,14 @@
<artifactId>aws-android-sdk-cognitoidentityprovider</artifactId>
<packaging>jar</packaging>
<name>AWS SDK for Android - Amazon Cognito Identity Provider</name>
<version>2.3.7</version>
<version>2.3.8</version>
<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>
<url>http://aws.amazon.com/sdkforandroid</url>

<parent>
<groupId>com.amazonaws</groupId>
<artifactId>aws-android-sdk-pom</artifactId>
<version>2.3.7</version>
<version>2.3.8</version>
</parent>

<licenses>
Expand All @@ -29,7 +29,7 @@
<groupId>com.amazonaws</groupId>
<artifactId>aws-android-sdk-core</artifactId>
<optional>false</optional>
<version>2.3.7</version>
<version>2.3.8</version>
</dependency>
<dependency>
<groupId>com.google.android</groupId>
Expand Down
2 changes: 1 addition & 1 deletion aws-android-sdk-core/pom.xml
Expand Up @@ -12,7 +12,7 @@
<parent>
<groupId>com.amazonaws</groupId>
<artifactId>aws-android-sdk-pom</artifactId>
<version>2.3.7</version>
<version>2.3.8</version>
</parent>

<dependencies>
Expand Down
Expand Up @@ -118,6 +118,7 @@ private static Map<String, HttpClientConfig> getDefaultHttpClients() {
ret.put("AWSIotClient", new HttpClientConfig("execute-api"));
ret.put("AmazonLexRuntimeClient", new HttpClientConfig("runtime.lex"));
ret.put("AmazonPinpointClient", new HttpClientConfig("mobiletargeting"));
ret.put("AmazonPinpointAnalyticsClient", new HttpClientConfig("mobileanalytics"));
return ret;
}

Expand Down
Expand Up @@ -23,7 +23,7 @@
*/
public class VersionInfoUtils {
/** SDK version info */
private static volatile String version = "2.3.7";
private static volatile String version = "2.3.8";
// changed build
// logic

Expand Down
@@ -1,3 +1,3 @@
fabric-identifier=com.amazonaws.aws-android-sdk-core
fabric-version=2.3.7
fabric-version=2.3.8
fabric-build-type=binary
Expand Up @@ -24,7 +24,7 @@ public class VersionInfoUtilsTest {

@Test
public void getVersion() {
assertEquals("2.3.7", VersionInfoUtils.getVersion());
assertEquals("2.3.8", VersionInfoUtils.getVersion());
}

@Test
Expand Down
8 changes: 4 additions & 4 deletions aws-android-sdk-ddb-mapper/pom.xml
Expand Up @@ -12,27 +12,27 @@
<parent>
<groupId>com.amazonaws</groupId>
<artifactId>aws-android-sdk-pom</artifactId>
<version>2.3.7</version>
<version>2.3.8</version>
</parent>

<dependencies>
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-android-sdk-core</artifactId>
<optional>false</optional>
<version>2.3.7</version>
<version>2.3.8</version>
</dependency>
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-android-sdk-ddb</artifactId>
<optional>false</optional>
<version>2.3.7</version>
<version>2.3.8</version>
</dependency>
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-android-sdk-s3</artifactId>
<optional>false</optional>
<version>2.3.7</version>
<version>2.3.8</version>
</dependency>
<dependency>
<groupId>junit</groupId>
Expand Down
4 changes: 2 additions & 2 deletions aws-android-sdk-ddb/pom.xml
Expand Up @@ -12,15 +12,15 @@
<parent>
<groupId>com.amazonaws</groupId>
<artifactId>aws-android-sdk-pom</artifactId>
<version>2.3.7</version>
<version>2.3.8</version>
</parent>

<dependencies>
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-android-sdk-core</artifactId>
<optional>false</optional>
<version>2.3.7</version>
<version>2.3.8</version>
</dependency>
<dependency>
<groupId>junit</groupId>
Expand Down
4 changes: 2 additions & 2 deletions aws-android-sdk-ec2/pom.xml
Expand Up @@ -12,15 +12,15 @@
<parent>
<groupId>com.amazonaws</groupId>
<artifactId>aws-android-sdk-pom</artifactId>
<version>2.3.7</version>
<version>2.3.8</version>
</parent>

<dependencies>
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-android-sdk-core</artifactId>
<optional>false</optional>
<version>2.3.7</version>
<version>2.3.8</version>
</dependency>
</dependencies>

Expand Down
4 changes: 2 additions & 2 deletions aws-android-sdk-elb/pom.xml
Expand Up @@ -12,15 +12,15 @@
<parent>
<groupId>com.amazonaws</groupId>
<artifactId>aws-android-sdk-pom</artifactId>
<version>2.3.7</version>
<version>2.3.8</version>
</parent>

<dependencies>
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-android-sdk-core</artifactId>
<optional>false</optional>
<version>2.3.7</version>
<version>2.3.8</version>
</dependency>
</dependencies>

Expand Down
4 changes: 2 additions & 2 deletions aws-android-sdk-iot/pom.xml
Expand Up @@ -12,15 +12,15 @@
<parent>
<groupId>com.amazonaws</groupId>
<artifactId>aws-android-sdk-pom</artifactId>
<version>2.3.7</version>
<version>2.3.8</version>
</parent>

<dependencies>
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-android-sdk-core</artifactId>
<optional>false</optional>
<version>2.3.7</version>
<version>2.3.8</version>
</dependency>
<dependency>
<groupId>org.eclipse.paho</groupId>
Expand Down
4 changes: 2 additions & 2 deletions aws-android-sdk-kinesis/pom.xml
Expand Up @@ -12,15 +12,15 @@
<parent>
<groupId>com.amazonaws</groupId>
<artifactId>aws-android-sdk-pom</artifactId>
<version>2.3.7</version>
<version>2.3.8</version>
</parent>

<dependencies>
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-android-sdk-core</artifactId>
<optional>false</optional>
<version>2.3.7</version>
<version>2.3.8</version>
</dependency>
<dependency>
<groupId>junit</groupId>
Expand Down
4 changes: 2 additions & 2 deletions aws-android-sdk-kms/pom.xml
Expand Up @@ -12,15 +12,15 @@
<parent>
<groupId>com.amazonaws</groupId>
<artifactId>aws-android-sdk-pom</artifactId>
<version>2.3.7</version>
<version>2.3.8</version>
</parent>

<dependencies>
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-android-sdk-core</artifactId>
<optional>false</optional>
<version>2.3.7</version>
<version>2.3.8</version>
</dependency>
</dependencies>

Expand Down
4 changes: 2 additions & 2 deletions aws-android-sdk-lambda/pom.xml
Expand Up @@ -12,15 +12,15 @@
<parent>
<groupId>com.amazonaws</groupId>
<artifactId>aws-android-sdk-pom</artifactId>
<version>2.3.7</version>
<version>2.3.8</version>
</parent>

<dependencies>
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-android-sdk-core</artifactId>
<optional>false</optional>
<version>2.3.7</version>
<version>2.3.8</version>
</dependency>
<dependency>
<groupId>junit</groupId>
Expand Down
4 changes: 2 additions & 2 deletions aws-android-sdk-lex/pom.xml
Expand Up @@ -12,7 +12,7 @@
<parent>
<groupId>com.amazonaws</groupId>
<artifactId>aws-android-sdk-pom</artifactId>
<version>2.3.7</version>
<version>2.3.8</version>
</parent>

<!-- Component includes software under each of these licenses; this is not a choice of license -->
Expand All @@ -33,7 +33,7 @@
<groupId>com.amazonaws</groupId>
<artifactId>aws-android-sdk-core</artifactId>
<optional>false</optional>
<version>2.3.7</version>
<version>2.3.8</version>
</dependency>
<dependency>
<groupId>com.google.android</groupId>
Expand Down
4 changes: 2 additions & 2 deletions aws-android-sdk-machinelearning/pom.xml
Expand Up @@ -12,15 +12,15 @@
<parent>
<groupId>com.amazonaws</groupId>
<artifactId>aws-android-sdk-pom</artifactId>
<version>2.3.7</version>
<version>2.3.8</version>
</parent>

<dependencies>
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-android-sdk-core</artifactId>
<optional>false</optional>
<version>2.3.7</version>
<version>2.3.8</version>
</dependency>
</dependencies>

Expand Down

0 comments on commit ac950c9

Please sign in to comment.