diff --git a/README.md b/README.md index 0153555f..4adc1ece 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,7 @@ ## Requirements -1. Android SDK 24+ is required as the `minSdkVersion` in your build.gradle. +1. Android SDK 26+ is required as the `minSdkVersion` in your build.gradle. 1. This library is written entirely in [Kotlin](https://kotlinlang.org/), and your app should use Kotlin as well. Compatibility with Java is not provided or supported. 1. This library supports web apps using either Turbo 7 or Turbolinks 5. 1. `Turbo` (or `Turbolinks`) is exposed on the `window` object on the WebView page being loaded. diff --git a/docs/INSTALLATION.md b/docs/INSTALLATION.md index e8aebfd3..22cef7d6 100644 --- a/docs/INSTALLATION.md +++ b/docs/INSTALLATION.md @@ -19,10 +19,10 @@ See the [latest version](https://search.maven.org/artifact/dev.hotwire/turbo) av *Note: As of May 1, 2021, artifacts will no longer be released to JCenter, since [it's shutting down](https://jfrog.com/blog/into-the-sunset-bintray-jcenter-gocenter-and-chartcenter/).* ## Required `minSdkVersion` -Android SDK 24 (or greater) is required as the `minSdkVersion` in your app module's `build.gradle` file: +Android SDK 26 (or greater) is required as the `minSdkVersion` in your app module's `build.gradle` file: ```groovy defaultConfig { - minSdkVersion 24 + minSdkVersion 26 // ... } ```