Skip to content
Open
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
2 changes: 1 addition & 1 deletion messaginginapp/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ dependencies {

implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
implementation "androidx.lifecycle:lifecycle-runtime-ktx:2.3.1"
implementation 'com.squareup.retrofit2:converter-gson:2.9.0'
implementation 'com.squareup.retrofit2:converter-gson:3.0.0'
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Bug: Gson Update Triggers Retrofit/OkHttp Version Conflicts

Updating converter-gson to 3.0.0 creates a version mismatch. It transitively pulls in Retrofit 3.0.0 and OkHttp 4.x, while Dependencies.retrofit and Dependencies.okhttpLoggingInterceptor likely remain at older 2.x/3.x versions. This major version conflict can cause runtime issues like ClassCastException, NoSuchMethodError, or ClassNotFoundException.

Fix in Cursor Fix in Web


implementation Dependencies.reduxKotlin
implementation Dependencies.coroutinesCore
Expand Down
Loading