From 31fdffdd16e3fb78058630322be8e585e0f607f0 Mon Sep 17 00:00:00 2001 From: Kirill Rozov Date: Sat, 27 Jun 2020 23:27:01 +0300 Subject: [PATCH] Add support of Android 11 (API Level 30) --- CHANGELOG.md | 4 ++++ README.md | 6 +++--- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0c2a263..b66bfdd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,10 @@ Change Log ========== +Version 30.0.0 (2020-06-27) +--------------------------------- +Add support Android 11 Stable SDK (Level 30) + Version 29.0.0 (2019-06-25) --------------------------------- Update to Android Q Stable SDK (Level 29) diff --git a/README.md b/README.md index c47e07e..da239f8 100644 --- a/README.md +++ b/README.md @@ -9,14 +9,14 @@ You must apply version of library for you project base on compileSdkVersion: ```groovy android { - compileSdkVersion 29 // 29 is required minimum + compileSdkVersion 30 // 30 is required minimum } dependencies { - implementation "com.kirich1409:strict-mode-compat:29.0.0" + implementation "com.kirich1409:strict-mode-compat:30.0.0" // Kotlin Extensions - implementation "com.kirich1409:strict-mode-compat-kotlin:29.0.0" + implementation "com.kirich1409:strict-mode-compat-kotlin:30.0.0" } ```