将棋プログラミング

(将棋に関する)ソフトウェア開発のノウハウ等。

java.lang.NoSuchFieldError: No field Companion of type Lokhttp3/RequestBody$Companion;

Android で使っているライブラリを更新したところ、次の Crash が起きた。

java.lang.NoSuchFieldError: No field Companion of type Lokhttp3/RequestBody$Companion;

次のように、com.squareup.okhttp3:okhttp: のバージョンを上げる必要があった。

dependencies {
//    implementation 'com.squareup.okhttp3:okhttp:3.3.1'
↓
    implementation 'com.squareup.okhttp3:okhttp:4.10.0'
}

square.github.io