From f2c722e21ff37c83e3ac07efcbb67016e97cf037 Mon Sep 17 00:00:00 2001 From: slawomirzaba Date: Tue, 4 Feb 2025 15:12:14 +0100 Subject: [PATCH] Set min sdk version to 25 --- README.md | 2 +- app/build.gradle.kts | 2 +- lib/build.gradle.kts | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 0621a1f..a9c7417 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ ## Compatibility -> contentpass supports Android 5.0 (Lollipop, sdk api version 21) and above +> contentpass supports Android 7.1 (sdk api version 25) and above diff --git a/app/build.gradle.kts b/app/build.gradle.kts index f1c2556..baba073 100644 --- a/app/build.gradle.kts +++ b/app/build.gradle.kts @@ -11,7 +11,7 @@ android { defaultConfig { applicationId = "de.contentpass.app" - minSdk = 21 + minSdk = 25 targetSdk = 30 versionCode = 1 versionName = "1.0" diff --git a/lib/build.gradle.kts b/lib/build.gradle.kts index abd221b..d018348 100644 --- a/lib/build.gradle.kts +++ b/lib/build.gradle.kts @@ -8,7 +8,7 @@ android { compileSdk = 30 defaultConfig { - minSdk = 21 + minSdk = 25 targetSdk = 30 testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"