Jake Wharton
Jake Wharton
`CliktCommand` works fine. `CoreSuspendingCliktCommand` also broken. Works: ```kotlin fun main(vararg args: String) { ExampleCommand().main(args) } private const val envVarName = "THIS_IS_A_TEST" private class ExampleCommand : CliktCommand() { private val value...
As far as I can tell there's no way to replicate this functionality in the current public API. `Segment.owner` isn't exposed, so a `UnsafeBufferOperations.forEachSegment` aggregation can't know if segments are...
AGP 9 is going to prevent us from compiling against our outdated version for `MockContentProvider`. We should be able to achieve the same testing from using a "normal" content provider.
``` Caused by: org.jetbrains.dokka.DokkaException: Pre-generation validity check failed: Source sets 'android' and 'jvm' have the common source roots: /Users/runner/work/prerelease-testing/prerelease-testing/cashapp-molecule/molecule-runtime/src/javaMain/kotlin. Every Kotlin source file should belong to only one source set...
With a `data class`, you declare the type `public` and all the properties become `public` even in explicit API mode. ```kotlin public data class Auth( val user: String, val token:...
`ByteArray.contentToString()` output is... not great. Emitting hexidecimal is probably more in line with what someone would expect. This is blocked on `HexFormat` and its APIs (e.g., `toHexString()`) going stable.
Publishing to Maven Central will require that you migrate to using the Central Portal soon. See (internally) http://go/central-portal-migration-com-squareup for context. Here is an example migration: https://github.com/square/okio/pull/1621. Do not perform the...