Madis Pink

Results 12 comments of Madis Pink

It would be awesome if there would be any indication of atomicity regarding the mainlooper - e.g. show when two callbacks are guaranteed to come from a single message in...

I know there's a guarantee of activity's onDestroy and onCreate callbacks being in a single message if a config change occurred, but I'm not sure if its been documented. See...

Hi, I created a fork and exposed the `id` and `versionCode` fields through `Configuration` and `Client` objects. Should I create a PR? Commit itself is here: https://github.com/madisp/bugsnag-java/commit/585f6089e821e3116099151538019e5e762efcff

I've hit the same issue, for me `sudo apt-get install fontconfig` fixed the problem

did some digging and debugging, this seems to be a `JAVA_HOME` issue, SqlDelight plugin uses `JAVA_HOME` to invoke Gradle. I'm using `asdf` to manage my installations and some reason the...

@VitKap are you also using `asdf`? I ended up adding the following to my `.zshrc`: ``` . ~/.asdf/plugins/java/set-java-home.zsh ```

NOTE: as a workaround, version catalog references are ok, e.g. this will work: ``` dependencies { add("myconfig", libs.foo) } ```

The bit I had was: ``` add("orchestratorApks", variantOf(libs.apks.orchestrator) { artifactType("apk") }) ``` and `libs.apks.orchestrator` was this in `libs.versions.toml`: ``` apks-orchestrator = "androidx.test:orchestrator:1.4.2" ``` --- On my side turns out I...

yup, most likely. `sealed class` needs a name though, maybe take a similar approach to string union to enum mapping that all union types should be defined via a type...

just noting there's a workaround for `.kts` by using `add`: ``` dependencies { // instead of this... "config"(dependency) // ...do this add("config", dependency) } ```