-
Notifications
You must be signed in to change notification settings - Fork 28
fix: upgrade okhttp and sardine dependencies for improved functionality #705
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: next
Are you sure you want to change the base?
Changes from 1 commit
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 | ||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
|
@@ -221,9 +221,14 @@ dependencies { | |||||||||||
| implementation(libs.gson) | ||||||||||||
| implementation(libs.okhttp) | ||||||||||||
| implementation(libs.okhttp.logging) | ||||||||||||
| implementation(libs.guardianproject.sardine) | ||||||||||||
| // adding web dav support: https://github.com/thegrizzlylabs/sardine-android' | ||||||||||||
| //implementation(libs.guardianproject.sardine) | ||||||||||||
| //implementation(libs.thegrizzlylabs.sardine) | ||||||||||||
| implementation("com.github.elelan:sardine-android:0.1.0-alpha03") | ||||||||||||
|
|
||||||||||||
|
|
||||||||||||
|
|
||||||||||||
|
||||||||||||
| // NOTE: Only alpha versions of sardine-android are available as of June 2024. | |
| // We use 0.1.0-alpha03 for WebDAV support, as no stable release exists. | |
| // Risks: Potential instability. Mitigation: Pin version, monitor upstream, and test thoroughly. | |
| implementation("com.github.elelan:sardine-android:0.1.0-alpha03") |
| Original file line number | Diff line number | Diff line change | ||
|---|---|---|---|---|
| @@ -1,38 +1,39 @@ | ||||
| [versions] | ||||
| activity = "1.10.1" | ||||
| agp = "8.12.0" | ||||
| agp = "8.12.1" | ||||
| appcompat = "1.7.1" | ||||
| biometric = "1.1.0" | ||||
| coil = "3.3.0" | ||||
| compose = "1.9.0-beta03" | ||||
| compose = "1.9.0" | ||||
| compose-material-icons = "1.7.8" | ||||
| compose-preference = "1.1.1" | ||||
| constraintlayout = "2.2.1" | ||||
| constraintlayout-compos = "1.1.1" | ||||
| coordinatorlayout = "1.3.0" | ||||
| core = "1.16.0" | ||||
| core = "1.17.0" | ||||
| core-splashscreen = "1.0.1" | ||||
| coroutines = "1.10.2" | ||||
| detekt = "1.23.8" | ||||
| detekt-compose = "0.4.26" | ||||
| detekt-compose = "0.4.27" | ||||
| detekt-rules-compose = "1.4.0" | ||||
| espresso-core = "3.5.1" | ||||
| fragment = "1.8.8" | ||||
| fragment = "1.8.9" | ||||
| google-api-client-android = "1.26.0" | ||||
| google-http-client-gson = "1.42.3" | ||||
| gson = "2.13.1" | ||||
| junit = "4.13.2" | ||||
| junit-android = "1.3.0" | ||||
| androidx-test-runner = "1.6.2" | ||||
| androidx-test-runner = "1.7.0" | ||||
| koin = "4.1.0" | ||||
| kotlin = "2.2.0" | ||||
| ksp = "2.2.0-2.0.2" | ||||
| kotlin = "2.2.10" | ||||
| ksp = "2.2.10-2.0.2" | ||||
| lifecycle = "2.9.2" | ||||
| material = "1.12.0" | ||||
| material3 = "1.4.0-beta01" | ||||
| mixpanel = "8.2.0" | ||||
| material3 = "1.4.0-beta02" | ||||
| mixpanel = "8.2.1" | ||||
| navigation = "2.9.3" | ||||
| okhttp = "4.12.0" | ||||
| okhttp = "5.1.0" | ||||
| thegrizzlylabs-sardine = "0.9" | ||||
|
||||
| thegrizzlylabs-sardine = "0.9" |
Copilot
AI
Aug 22, 2025
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.
The thegrizzlylabs-sardine library definition is added but not used in the actual implementation. Consider removing this unused library definition to avoid confusion.
| thegrizzlylabs-sardine = { group = "com.github.thegrizzlylabs", name = "sardine-android", version.ref = "thegrizzlylabs-sardine" } |
| Original file line number | Diff line number | Diff line change | ||
|---|---|---|---|---|
|
|
@@ -89,6 +89,8 @@ dependencyResolutionManagement { | |||
| includeModule("com.github.derlio", "audio-waveform") | ||||
| includeModule("com.github.abdularis", "circularimageview") | ||||
| includeModule("com.github.guardianproject", "sardine-android") | ||||
| includeModule("com.github.thegrizzlylabs", "sardine-android") | ||||
|
||||
| includeModule("com.github.thegrizzlylabs", "sardine-android") |
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.
The sardine dependency is hardcoded instead of using the version catalog approach used elsewhere in the project. Consider defining this in libs.versions.toml for consistency.