Paul Hawke
Paul Hawke
Repo that reproduces the issue - https://github.com/touchlab/kermit-missing-log-writer - specifically https://github.com/touchlab/kermit-missing-log-writer/blob/main/androidApp/src/test/java/co/touchlab/kermit/kermitmissinglogwriter/android/SomeFullyAndroidRepositoryTest.kt
This (and the other 10 PR's associated with refactoring model classes) seem to have stalled since February. Is this work that is wanted or fair to call it abandoned? If...
On point 2 - if the team is already committed to using Kotlin - you might consider using Kotlin Multiplatform Mobile (KMM) to enable sharing code between your Android and...
I was watching a really good video from the recent Droidcon NY - https://www.droidcon.com/2022/09/29/optimize-your-app-for-large-screens-3/ - talking about optimizing an app for larger screens, but also a good talk part way...
https://android-developers.googleblog.com/2022/02/discontinuing-kotlin-synthetics-for-views.html?m=1 Google says - > In November 2020, we announced that this plugin has been deprecated in favor of better solutions, and we recommended removing the plugin from your projects....
Suppose in the `no-op` variant, I have a class ```kotlin class ChuckerCallFactory(private val wrapped: Call.Factory) : Call.Factory { override fun newCall(request: Request): Call = wrapped.newCall(request) fun addFilter(filter: (Request) -> Boolean)...
But, why not skip the header, and just configure the filters on the interceptor instead? ```kotlin private val skippedEndpoints: MutableList Boolean> = mutableListOf() override fun intercept(chain: Interceptor.Chain): Response { val...
Before I drop a PR for cookies support, I'd like to get a little feedback on the UI. The "cookies" tab is displayed if there are cookies present in either...
If the cookies live on their respective _request_ and _response_ tabs we would potentially be adding more secondary content that pushes the request body down; most of the time when...
Implementing this feature _after_ #337 would be a piece of cake - there's a lot of re-use available in the draft PR you shared. I'm happy to wait until #337...