jw
10/22/2018, 5:15 PMjw
10/22/2018, 5:16 PMjw
10/22/2018, 5:18 PMbdawg.io
10/22/2018, 5:23 PMjw
10/22/2018, 5:24 PMjw
10/22/2018, 5:24 PMpniederw
10/23/2018, 5:03 AMdave08
10/23/2018, 11:30 AMenqueue
all of them and let OkHttp handle as many as it think it can? I'm using coroutines and considering the Ktor Client OkHttp wrapper for handling concurrency on the content body receiving side.dave08
10/23/2018, 11:34 AMgildor
10/23/2018, 12:20 PMdave08
10/23/2018, 12:26 PMgildor
10/23/2018, 12:30 PMgildor
10/23/2018, 12:31 PMPaul Woitaschek
11/01/2018, 1:51 PMBitmap.Config.Hardware
?Paul Woitaschek
11/01/2018, 1:52 PMTransformation
I need to remember to change the bitmap config manually before.
Picasso could detect that and handle it automatically.eric
11/02/2018, 11:11 PMPaul Woitaschek
11/03/2018, 4:02 PMAllan Wang
11/09/2018, 6:14 AMNikky
11/09/2018, 5:20 PMNikky
11/09/2018, 5:21 PMNikky
11/09/2018, 5:21 PMAllan Wang
11/09/2018, 5:30 PMobject A { val s: String = "test", val b: Int = 2 }
by having the actual object A
and its values, it would be easier than me generating each field myself.egorand
11/09/2018, 6:25 PMegorand
11/09/2018, 6:26 PMTypeSpec.objectBuilder()
russhwolf
11/10/2018, 2:46 PMSuperclass<T>
and I want to generate class Subclass : Superclass<Int>()
. I can’t find an api on TypeSpec.Builder
to specify T
as Int
so I just have
TypeSpec.classBuilder("Subclass")
.superclass(Superclass::class)
.build()
which generates class Subclass : Superclass()
with no parameter.dave08
11/13/2018, 2:08 PMeric
11/13/2018, 4:36 PMdave08
11/13/2018, 5:23 PMdave08
11/13/2018, 5:25 PMmoshi.adapter(Foo::class.java)
be called or moshi.adapter<Foo>(Foo::class.java)
?dave08
11/13/2018, 5:25 PM