Skip to content

Commit

Permalink
AWS AppSync Android SDK version 2.6.21
Browse files Browse the repository at this point in the history
  • Loading branch information
minbi committed Jun 28, 2018
1 parent 8647400 commit 0b00d48
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 8 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
### Enhancements

* Call `onCompleted` method of `AppSyncSubscriptionCall.Callback` when a subscription is disconnected.
* Remove static references to context. See [issue #13](https://github.com/awslabs/aws-mobile-appsync-sdk-android/issues/13)

## [Release 2.6.20](https://github.com/awslabs/aws-mobile-appsync-sdk-android/releases/tag/release_v2.6.20)

Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ In the project's `build.gradle`, add the following dependency in
the build script:

```groovy
classpath 'com.amazonaws:aws-android-sdk-appsync-gradle-plugin:2.6.20'
classpath 'com.amazonaws:aws-android-sdk-appsync-gradle-plugin:2.6.+'
```

**Sample project's build.gradle**
Expand All @@ -31,7 +31,7 @@ the build script:
// ..other code..
dependencies {
classpath 'com.android.tools.build:gradle:3.0.1'
classpath 'com.amazonaws:aws-android-sdk-appsync-gradle-plugin:2.6.20'
classpath 'com.amazonaws:aws-android-sdk-appsync-gradle-plugin:2.6.+'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
Expand All @@ -49,7 +49,7 @@ In the app's `build.gradle`, add the following plugin:
Add the following dependency:

```groovy
compile 'com.amazonaws:aws-android-sdk-appsync:2.6.20'
compile 'com.amazonaws:aws-android-sdk-appsync:2.6.+'
```

**Sample app's build.gradle**
Expand All @@ -62,7 +62,7 @@ Add the following dependency:
}
dependencies {
// Typical dependencies
compile 'com.amazonaws:aws-android-sdk-appsync:2.6.20'
compile 'com.amazonaws:aws-android-sdk-appsync:2.6.+'
}
```

Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
// Generated file. Do not edit!
package com.apollographql.android
val VERSION = "2.6.20"
val VERSION = "2.6.21"
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,6 @@ class AppSyncOfflineMutationInterceptor implements ApolloInterceptor {
final boolean sendOperationIdentifiers;
final ScalarTypeAdapters scalarTypeAdapters;
final AppSyncOfflineMutationManager manager;
Context mContext;
Map<Mutation, MutationInformation> originalMutationRequestMap;
AWSAppSyncClient appSyncClient;
private QueueUpdateHandler queueHandler;
Expand Down Expand Up @@ -220,7 +219,6 @@ public AppSyncOfflineMutationInterceptor(@Nonnull AppSyncOfflineMutationManager
this.scalarTypeAdapters = new ScalarTypeAdapters(customTypeAdapters);
this.sendOperationIdentifiers = sendOperationIdentifiers;
this.manager = manager;
this.mContext = context;
this.appSyncClient = client;
this.originalMutationRequestMap = requestMap;
queueHandlerThread = new HandlerThread("AWSAppSyncMutationQueueThread");
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ org.gradle.jvmargs=-Xmx1536m
org.gradle.parallel=true

GROUP=com.amazonaws
VERSION_NAME=2.6.20
VERSION_NAME=2.6.21

POM_URL=https://github.com/awslabs/aws-mobile-appsync-sdk-android
POM_SCM_URL=https://github.com/awslabs/aws-mobile-appsync-sdk-android
Expand Down

0 comments on commit 0b00d48

Please sign in to comment.