Brian Hoffmann

Results 8 comments of Brian Hoffmann

Seeing this with `0.24.9-beta` @alexvanyo could you check if this could be fixed, please? When debugging, it seems that `LocalFabPlacement` yields `null` in the `BottomBar`, altough it gets correctly assigned.

As @Zeliret pointed out, compose foundation supports insets since 1.2.0-alpha03. This yields visually the same result as with accompanist Scaffold with working FAB cut-out: ```kotlin import androidx.compose.material.Scaffold import androidx.compose.foundation.layout.statusBarsPadding Scaffold(...

Another option to this is, to create a new task just for the PDF backend. The advantage is, you don't have to deal with `ifdef`s in the source file. ```...

I struggled with this for way to long now and finally it worked. Setting the search path with -L to an absolute path instead of TARGET_OUT helped. ``` LOCAL_LDLIBS :=...

I'm seeing this after upgrading to core 2022.11 as well. I did not have any issues with interference before the upgrade whatsoever. If this is really related to interference, did...

I'm trying to get v1.0.0 working together with [google/protobuf-gradle-plugin](https://github.com/google/protobuf-gradle-plugin) and are struggling also with `--doc_opt`. Apparently, `protoc` allows custom options to be passed to the `*_out` flag. In turn, the...

As I just learnt from google/protobuf-gradle-plugin#184 options can also be passed using the older way of by prepending them to the `_out` flag. Accordingly, `--doc_out=doc --doc_opt=html,myoutput.html` is equivalent to `--doc_out=html,myoutput.html:doc`.

I just changed my module setup and now I am encountering this. When running a `NpxTask` in CI I get: > npm error could not determine executable to run It...