Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.

Expand Down
8 changes: 4 additions & 4 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion autofill/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ kotlin {
android {
namespace = "com.jeeldobariya.passcodes.autofill"
compileSdk {
version = release(36)
version = release(37)
}

defaultConfig {
Expand Down
2 changes: 1 addition & 1 deletion core/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ kotlin {
android {
namespace = "com.jeeldobariya.passcodes.core"
compileSdk {
version = release(36)
version = release(37)
}

defaultConfig {
Expand Down
2 changes: 1 addition & 1 deletion database/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ plugins {

kotlin {
android {
compileSdk = 36
compileSdk = 37
minSdk = 26
namespace = "com.jeeldobariya.passcodes.database"
experimentalProperties["android.experimental.kmp.enableAndroidResources"] = true
Expand Down
2 changes: 1 addition & 1 deletion design_system/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
8 changes: 4 additions & 4 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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



Expand Down
2 changes: 1 addition & 1 deletion password_manager/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ kotlin {
android {
namespace = "com.jeeldobariya.passcodes.password_manager"
compileSdk {
version = release(36)
version = release(37)
}

defaultConfig {
Expand Down
2 changes: 1 addition & 1 deletion settings.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -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")
}
}
}
Expand Down