diff --git a/README.md b/README.md index 48b20fb6..bdb2a0d2 100644 --- a/README.md +++ b/README.md @@ -58,10 +58,9 @@ to push them to cloud. ## Compatibility -- **Compile Sdk**: `Android 16 (API level 36)` -- **Recommend**: `Android 14` +- **Compile Sdk**: `Android 17 (API level 37)` -`Android 8+` [API level 26+] -> `Android 14` [API level 34] (we support offically) +`Android 8+` [API level 26+] -> `Android 17` [API level 34] (we support offically) Note: high versions can still run, but we are not guaranteed offically. diff --git a/app/build.gradle.kts b/app/build.gradle.kts index 28df36b2..5f28ad8f 100644 --- a/app/build.gradle.kts +++ b/app/build.gradle.kts @@ -20,10 +20,10 @@ fun getCurrentTimeLabel(): String { // Core Versioning -val appVersionCode = 5 -val appVersionName = "v2.0.1-Beta.rc1" -val appLabel = "v2.0.1 - Beta (rc1)" -val appDevLabel = "v2.0.1 - ${getCurrentTimeLabel()}" +val appVersionCode = 6 +val appVersionName = "v2.1.0-Beta" +val appLabel = "v2.1.0 - Beta" +val appDevLabel = "v2.1.0 - ${getCurrentTimeLabel()}" // SDK Versions val appCompileSdk = 37 diff --git a/autofill/build.gradle.kts b/autofill/build.gradle.kts index 626fca44..d6041c3a 100644 --- a/autofill/build.gradle.kts +++ b/autofill/build.gradle.kts @@ -14,7 +14,7 @@ kotlin { android { namespace = "com.jeeldobariya.passcodes.autofill" compileSdk { - version = release(36) + version = release(37) } defaultConfig { diff --git a/core/build.gradle.kts b/core/build.gradle.kts index 867c226b..132c01b9 100644 --- a/core/build.gradle.kts +++ b/core/build.gradle.kts @@ -14,7 +14,7 @@ kotlin { android { namespace = "com.jeeldobariya.passcodes.core" compileSdk { - version = release(36) + version = release(37) } defaultConfig { diff --git a/database/build.gradle.kts b/database/build.gradle.kts index 3bd0a358..db8c647b 100644 --- a/database/build.gradle.kts +++ b/database/build.gradle.kts @@ -7,7 +7,7 @@ plugins { kotlin { android { - compileSdk = 36 + compileSdk = 37 minSdk = 26 namespace = "com.jeeldobariya.passcodes.database" experimentalProperties["android.experimental.kmp.enableAndroidResources"] = true diff --git a/design_system/build.gradle.kts b/design_system/build.gradle.kts index 0f621aba..06373fa1 100644 --- a/design_system/build.gradle.kts +++ b/design_system/build.gradle.kts @@ -7,7 +7,7 @@ plugins { kotlin { androidLibrary { - compileSdk = 36 + compileSdk = 37 minSdk = 26 namespace = "com.jeeldobariya.passcodes.design_system" experimentalProperties["android.experimental.kmp.enableAndroidResources"] = true diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml index c8472c43..20b7c319 100644 --- a/gradle/libs.versions.toml +++ b/gradle/libs.versions.toml @@ -14,22 +14,22 @@ junit = "4.13.2" truth = "1.4.5" runner = "1.7.0" androidx-junit = "1.3.0" -coroutines = "1.10.2" +coroutines = "1.11.0" lifecycle = "2.10.0" koin = "4.2.1" ktor = "3.4.3" composeMultiplatform = "1.10.3" -composeBom = "2026.04.01" +composeBom = "2026.05.00" compose-activity = "1.13.0" compose-viewmodel = "2.10.0" datastorePreferences = "1.2.1" kotlinSerializationJson = "1.11.0" # Plugin versions -agp = "9.2.0" +agp = "9.2.1" ksp = "2.3.7" kotlin = "2.3.21" -oss-license-plugin = "0.11.0" # Always update also in settings.gradle.kts +oss-license-plugin = "0.12.0" # Always update also in settings.gradle.kts diff --git a/password_manager/build.gradle.kts b/password_manager/build.gradle.kts index 7e0294df..47eade7e 100644 --- a/password_manager/build.gradle.kts +++ b/password_manager/build.gradle.kts @@ -15,7 +15,7 @@ kotlin { android { namespace = "com.jeeldobariya.passcodes.password_manager" compileSdk { - version = release(36) + version = release(37) } defaultConfig { diff --git a/settings.gradle.kts b/settings.gradle.kts index 0d8a09e7..bb07d239 100644 --- a/settings.gradle.kts +++ b/settings.gradle.kts @@ -7,7 +7,7 @@ pluginManagement { resolutionStrategy { eachPlugin { if (requested.id.id == "com.google.android.gms.oss-licenses-plugin") { - useModule("com.google.android.gms:oss-licenses-plugin:0.11.0") + useModule("com.google.android.gms:oss-licenses-plugin:0.12.0") } } }