Skip to content

Commit d15d4fd

Browse files
sdhukaDhuka
andauthored
chore: update gradle version in readme to match sdk gradle version (#385)
Co-authored-by: Dhuka <[email protected]>
1 parent fb86285 commit d15d4fd

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ Step by step documentation can be found here: https://aws-amplify.github.io/docs
2020
In the project's `build.gradle`, add a dependency to the `dependencies` inside the `buildscript` block:
2121

2222
```groovy
23-
classpath 'com.amazonaws:aws-android-sdk-appsync-gradle-plugin:3.1.1'
23+
classpath 'com.amazonaws:aws-android-sdk-appsync-gradle-plugin:3.1.3'
2424
```
2525

2626
Also, add the maven plugins repository to your `repositories`.
@@ -69,8 +69,8 @@ buildscript {
6969
}
7070
7171
dependencies {
72-
classpath 'com.android.tools.build:gradle:4.0.1'
73-
classpath 'com.amazonaws:aws-android-sdk-appsync-gradle-plugin:3.1.1'
72+
classpath 'com.android.tools.build:gradle:3.5.3'
73+
classpath 'com.amazonaws:aws-android-sdk-appsync-gradle-plugin:3.1.3'
7474
}
7575
}
7676
@@ -195,7 +195,7 @@ Create a file named `awsconfiguration.json` under your app's `res/raw` directory
195195
}
196196
```
197197

198-
The `AWSConfiguration` represents the configuration information present in `awsconfiguration.json` file. By default, the information under `Default` section will be used.
198+
The `AWSConfiguration` represents the configuration information present in `awsconfiguration.json` file. By default, the information under `Default` section will be used.
199199

200200
```java
201201
AWSAppSyncClient client = AWSAppSyncClient.builder()
@@ -423,7 +423,7 @@ public void addPost() {
423423
// Error handling
424424
}
425425
};
426-
426+
427427
AddPostMutation addPostMutation = AddPostMutation.builder()
428428
.id(UUID.randomUUID().toString())
429429
.title(title)
@@ -434,7 +434,7 @@ public void addPost() {
434434
.downs(0)
435435
.expectedVersion(1)
436436
.build();
437-
437+
438438
client.mutate(addPostMutation).enqueue(postsCallback);
439439
}
440440
```

0 commit comments

Comments
 (0)