Skip to content

Commit

Permalink
Set proper min sdk of 21 (#414)
Browse files Browse the repository at this point in the history
  • Loading branch information
tylerjroach authored May 11, 2023
1 parent 0ec8fa3 commit f12789c
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,10 @@ For front-end web and mobile development, we recommend using the [Amplify](https

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

## Platform Support

AWS AppSync SDK for Android supports Android API level 21 (Android 5.0) and above.

## Samples

1. A sample app using the events sample schema can be found here: https://github.com/aws-samples/aws-mobile-appsync-events-starter-android
Expand Down
2 changes: 1 addition & 1 deletion aws-android-sdk-appsync-tests/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ android {
compileSdkVersion 28

defaultConfig {
minSdkVersion 18
minSdkVersion 21
targetSdkVersion 28
versionCode 1
versionName "1.0"
Expand Down
2 changes: 1 addition & 1 deletion aws-android-sdk-appsync/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ android {
compileSdkVersion 28

defaultConfig {
minSdkVersion 15
minSdkVersion 21
targetSdkVersion 28
versionCode 1
versionName "1.0"
Expand Down

0 comments on commit f12789c

Please sign in to comment.