Raman Gupta
Raman Gupta
Using these properties for the firebase theme seems to work around the issue on Android 16: ``` true true ```
According to [the forum post that pointed me to this issue](https://community.temporal.io/t/inability-to-list-workflow-executions-with-test-environment/7471/4) we can use the `ListOpenWorkflowExecutionsRequest` or `ListClosedWorkflowExecutionsRequest` endpoints instead. Is there a way to access these endpoints via the...
> According to [the forum post that pointed me to this issue](https://community.temporal.io/t/inability-to-list-workflow-executions-with-test-environment/7471/4) we can use the `ListOpenWorkflowExecutionsRequest` or `ListClosedWorkflowExecutionsRequest` endpoints instead. Is there a way to access these endpoints via...
First PDF I tried, I got this error: ``` Traceback (most recent call last): File "/home/raman/opt/bin/pdf-sign", line 1126, in main(parsed_args) ~~~~^^^^^^^^^^^^^ File "/home/raman/opt/bin/pdf-sign", line 81, in main pageCount=pdfCountPages(inputPDF) File "/home/raman/opt/bin/pdf-sign",...
> * Please try again and provide the output ``` Command pdfinfo /tmp/tmpqekzkcoh/input.pdf produced output on stderr: Syntax Error: Suspects object is wrong type (boolean) Run pdf-sign with flag -c...
@chrisalbright Seems like it might be a bug with kotlin-reflect 1.6.21. Explicitly adding `implementation(kotlin("reflect", "2.0.20"))` to your dependencies resolves the issue.
Ooh yeah double equality will get you every time :-) Glad you found it. Dev branch works for me with that signature, as well as my actual sigs.
I'm aware and am using it as well. However, I was trying to use `kotlin.uuid.Uuid` which requires api version 2.0. If I specify `apiVersion = "2.0"` in my project I...
I had a warning in TeamCity that the agents had out of date plugins. I wonder if the GCP plugin version being different on the agent vs the server was...
Unfortunately I can't use value classes here because I also need Java compatibility for these types (Kotlin 2.2.0 has a solution for that but updating to that will likely cause...