Endeavour233
Endeavour233
> For now I've put all of these special classes into the same package name, and used the Proguard rule I wrote (`-keep,allowobfuscation class com.your_library.rest_objects.** { *; }`) . >...
> @Endeavour233 This is a bit different from what you wrote. There it says: > > ``` > # Prevent R8 from leaving Data object members always null > -keepclassmembers,allowobfuscation...
> @Endeavour233 So you suggest the bit longer one, with the link I've put, right? > > I still think such a thing should be mentioned somewhere officially. It's not...
I think it's because `.convert()` is invoked when `retrofit2.Call` (current core implementation is `OkHttpCall`) creates a `okhttp3.Call`, which actually executes the network request, by `createRawCall()`(to be more specific, when `requestFactory#create(@Nullable...
> I think it's because `.convert()` is invoked when `retrofit2.Call` (current core implementation is `OkHttpCall`) creates a `okhttp3.Call`, which actually executes the network request, by `createRawCall()`(to be more specific, when...
This resolves #4113
Excuse me, do you have any plan about this PR? (I am good with closing it because it's intended to deal with a pretty extreme situation, and we can replace...
> I will get to it eventually, but probably not for a few weeks, unfortunately. Don't worry, it has been sitting in my notifications and won't get lost. Thanks for...
> **My Env:** okhttp version is 4.9.1 java version is Java(TM) SE Runtime Environment (build 1.8.0_333-b02) > > **Problems encountered:** I'm using okhttp to make requests to the website, GET&POST...
> @Endeavour233 Thank you for your reply. > > Before requesting, my program will output the log to logger.info, so I can clearly see the time when this logic is...