sendoav
09/30/2019, 9:54 AMKlara Erlebachova
10/01/2019, 12:28 PMalex.krupa
10/02/2019, 4:18 PMliminal
10/07/2019, 10:35 PMcoletz
10/08/2019, 6:07 PMCody Engel
10/09/2019, 5:26 PMView
breaking their code gen? (More info in thread)SrSouza
10/16/2019, 6:08 PM@Body
is null ?ghedeon
10/18/2019, 2:46 PMjishindev
10/23/2019, 11:52 AMwire 3.0
not support proto3
? Seeing this while building the project which has proto3
files.
Skipped .proto files with unsupported syntax. Add this line to fix:
syntax = "proto2";
jw
10/31/2019, 7:50 PMPaul Woitaschek
11/11/2019, 4:11 PMsealed class Action
. Now I have sth like:
suspend fun run(actions : List<Action>){
withContext(<http://Dispatchers.IO|Dispatchers.IO>){
db.transaction {
actions.forEach { action ->
when (action) {
is Action.Delete -> queries ...
}
}
}
}
}
Does that make sense?Paul Woitaschek
11/12/2019, 11:03 AMJson(name...)
? I hate the implicit contract between field naming and json representation. I'm always triple-checking that I don't rename something that gets serialized.myanmarking
11/15/2019, 4:42 PMChainchelliah
11/20/2019, 5:05 AMJan Stoltman
12/05/2019, 3:19 PMPaul Woitaschek
12/09/2019, 12:37 PMBen Tseytlin
12/09/2019, 7:58 PMIve Vasiljevic
12/13/2019, 11:05 PM@field:Json
actually get a value of zero and not the default value which should be time in milliseconds. I am using Moshi (retrofit2:converter-moshi). Anyone else experienced this behavior?Cody Engel
12/18/2019, 9:25 PMsentDate
which can be null if the sending event hasn’t triggered yet. It looks like there is a closed issue so I’m assuming nullable types aren’t supported by wanted to check: https://github.com/cashapp/sqldelight/issues/145Cody Engel
12/19/2019, 1:08 AMCREATE TABLE campaignEntity (
id INTEGER NOT NULL PRIMARY KEY,
type TEXT NOT NULL,
name TEXT NOT NULL,
sentDate TEXT,
amountSent INTEGER NOT NULL,
amountToSend INTEGER NOT NULL,
totalOpens INTEGER NOT NULL,
uniqueOpens INTEGER NOT NULL,
totalLinkClicks INTEGER NOT NULL,
uniqueLinkClicks INTEGER NOT NULL,
unsubscribes INTEGER NOT NULL,
hardBounces INTEGER NOT NULL,
softBounces INTEGER NOT NULL,
totalForwards INTEGER NOT NULL,
uniqueForwards INTEGER NOT NULL,
totalReplies INTEGER NOT NULL,
uniqueReplies INTEGER NOT NULL
);
Are you saying updating sentDate to DEFAULT NULL
would make the generated column adapter to be String?
instead?Maurice Jouvet
12/30/2019, 9:27 AMvinay
01/02/2020, 7:06 AMworkflow-ui-android
declares minSdk 21? Is it safe to override this? I'm on minSdk 16.vinay
01/06/2020, 6:34 AMworkflow
, how does square handle events which need to be consumed exactly once (analytics)?diesieben07
01/09/2020, 11:25 PMplugins
block (even without a version, huh?), but the plugin does not seem to be published to the Gradle plugins maven... Even adding mavenCentral to the plugins repositories does not help, even though the plugin seems to be published there.Dominaezzz
01/14/2020, 4:43 PMexpect typealias Foo
actual typealias Foo = SpecialNativePtr
with Kotlin Poet?Grant Park
01/23/2020, 8:26 PMMaurice Jouvet
01/31/2020, 8:00 AMdoubov
02/05/2020, 9:33 PMParent
Child A
Child B
Child A needs to send something to Child B without holding it in state inside the Parent. Is there a pattern? Right now I’ve created a Relay/Channel in the Parent, which gets passed into Child B. Child A sends an Output
to Parent, which then gets routed to the Relay/ChannelAmirul Zin
02/13/2020, 7:49 AM@Inject
inside any generated source files?
I’m trying to generate source files with unscoped @Inject
constructors. Not sure if Dagger could also read all these generated sources.Kris Wong
02/14/2020, 4:34 PMKris Wong
02/14/2020, 4:34 PMrusshwolf
02/14/2020, 4:38 PMKris Wong
02/14/2020, 4:39 PMrusshwolf
02/14/2020, 4:42 PMKris Wong
02/14/2020, 4:46 PMrusshwolf
02/14/2020, 4:47 PM:soluna-mobile:shared
Kris Wong
02/14/2020, 4:51 PMRuntimeEnvironment