Skip to content

Commit f12789c

Browse files
authored
Set proper min sdk of 21 (#414)
1 parent 0ec8fa3 commit f12789c

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,10 @@ For front-end web and mobile development, we recommend using the [Amplify](https
1212

1313
The AWS AppSync SDK for Android enables you to access your AWS AppSync backend and perform operations like queries, mutations, and subscription. The SDK also includes support for offline operations. This SDK is derrived from the Apollo project found [here](https://github.com/apollographql/apollo-android). Please log questions for this client SDK in this repo and questions for the AppSync service in the [official AWS AppSync forum](https://forums.aws.amazon.com/forum.jspa?forumID=280&start=0).
1414

15+
## Platform Support
16+
17+
AWS AppSync SDK for Android supports Android API level 21 (Android 5.0) and above.
18+
1519
## Samples
1620

1721
1. A sample app using the events sample schema can be found here: https://github.com/aws-samples/aws-mobile-appsync-events-starter-android

aws-android-sdk-appsync-tests/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ android {
2323
compileSdkVersion 28
2424

2525
defaultConfig {
26-
minSdkVersion 18
26+
minSdkVersion 21
2727
targetSdkVersion 28
2828
versionCode 1
2929
versionName "1.0"

aws-android-sdk-appsync/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ android {
77
compileSdkVersion 28
88

99
defaultConfig {
10-
minSdkVersion 15
10+
minSdkVersion 21
1111
targetSdkVersion 28
1212
versionCode 1
1313
versionName "1.0"

0 commit comments

Comments
 (0)