-
Notifications
You must be signed in to change notification settings - Fork 3
Kotlin 2.2.10 + other deps #132
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: develop
Are you sure you want to change the base?
Changes from all commits
4a298c2
6aa3525
b39cd3d
ee2d73a
952470d
b605046
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,7 +1,7 @@ | ||
| [versions] | ||
| agp = "8.11.1" | ||
| kotlin = "2.1.20" | ||
| ksp = "2.1.20-1.0.32" # Must be compatible with: `kotlin` | ||
| agp = "8.13.1" | ||
| kotlin = "2.2.20" | ||
| ksp = "2.3.0" | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. CRITICAL: KSP version does not meet Koin Annotations 2.3.1 requirement. Koin Annotations 2.3.1 requires KSP 2.3.2, but Line 4 specifies KSP 2.3.0. This version mismatch will cause compilation failures. Update Line 4 to match the requirement: - ksp = "2.3.0"
+ ksp = "2.3.2"Also applies to: 13-13 🤖 Prompt for AI Agents |
||
| desugarLibs = "2.1.5" | ||
| androidxLifecycle = "2.9.1" | ||
| androidxComposeBom = "2025.06.01" | ||
|
|
@@ -10,7 +10,7 @@ androidxActivity = "1.10.1" | |
| decompose = "3.3.0" | ||
| essenty = "2.5.0" | ||
| koin = "4.1.0" | ||
| koinAnnotations = "2.1.0" # Must be compatible with: `ksp` | ||
| koinAnnotations = "2.3.1" # Must be compatible with: `ksp` | ||
| kotlinx-coroutines = "1.10.2" | ||
| kotlinx-immutableCollections = "0.4.0" | ||
| kotlinx-dateTime = "0.6.2" | ||
|
|
@@ -19,16 +19,16 @@ ktlint = "1.6.0" | |
| detektGradlePlugin = "1.23.8" | ||
| composeLint = "1.4.2" | ||
| apollo = "4.3.1" | ||
| ktorfit = "2.4.0" # Must be compatible with: `ksp` | ||
| ktor = "3.1.0" # Must be compatible with: `ktorfit` | ||
| ktorfit = "2.6.5" # Must be compatible with: `ksp` | ||
| ktor = "3.3.3" # Must be compatible with: `ktorfit` | ||
| kotlinx-serialization = "1.8.0" # Must be compatible with: `kotlin` | ||
| timber = "5.0.1" | ||
| kermit = "2.0.4" | ||
| skie = "0.10.2" # Must be compatible with: `kotlin` | ||
| kermit = "2.0.8" | ||
| skie = "0.10.8" # Must be compatible with: `kotlin` | ||
| buildkonfig = "0.17.1" | ||
| nsExceptionKt = "1.0.0-BETA-7" | ||
| datastore = "1.1.1" | ||
| moko-resources = "0.24.5" | ||
| moko-resources = "0.25.2" | ||
| baselineProfile = "1.3.4" | ||
| junit = "1.2.1" | ||
| espressoCore = "3.6.1" | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm disabling this for now because Koin annotations somehow refuses to detect dependencies with
namedqualifier from the same subproject.