jw
04/03/2019, 2:30 AMaddTypeVariable
methodrkeazor
04/03/2019, 2:31 AMrkeazor
04/17/2019, 2:43 AMjw
04/17/2019, 3:07 AMjw
04/17/2019, 3:07 AMrkeazor
04/17/2019, 6:42 AMPaul Woitaschek
04/20/2019, 11:22 AMalec
04/20/2019, 12:58 PMjw
04/21/2019, 6:34 PMkevin.cianfarini
04/21/2019, 6:42 PMPaul Woitaschek
05/07/2019, 9:42 AMjw
05/07/2019, 12:00 PMPaul Woitaschek
05/07/2019, 3:03 PMrook
05/10/2019, 10:57 PMnull
or empty field values. If I turn off Proguard, everything works as expected. If I revert to 3.3.1 and turn Proguard on, everything works as expected.
I don’t know whether this is actually a kotlin-specific issue, but it happens to be fixed by using Moshi kotlin-code-gen.
I can work around the problem, more or less. I’m just curious where I should be reporting this issue.rook
05/10/2019, 10:58 PMrook
05/10/2019, 11:12 PMmben
05/22/2019, 2:31 PMalec
05/22/2019, 2:32 PMdimsuz
05/24/2019, 12:10 PMdata class Team(val players: List<Player>)
fun selectAllTeams(): List<Team> {
return db.teamQueries.whatGoesHere()
}
• Should I use a JOIN and group + map it manually?
• Should I perform 2 separate queries (select teams, for each select players) and use their mappers?
• Other?dimsuz
05/24/2019, 12:11 PMdimsuz
05/24/2019, 12:18 PMmben
05/24/2019, 12:48 PMPaul Woitaschek
05/27/2019, 4:16 PMMoshiConverterFactory
and com.jakewharton.retrofit2.converter.kotlinx.serialization.Factory
don't play well together as they both want to handle all types 😕jw
05/27/2019, 4:18 PMPaul Woitaschek
05/28/2019, 11:22 AMfun delete(@Body toDelete: Collection<UUID>): Completable
This now crashes as runtime with
kotlinx.serialization.SerializationException: Can't locate argument-less serializer for class java.util.UUID. For generic classes, such as lists, please provide serializer explicitly.
waqas
05/31/2019, 2:31 PMjw
05/31/2019, 3:00 PMjw
05/31/2019, 3:00 PM