Sean Proctor
Sean Proctor
 Sorry for the low effort screen shot
Ok, I see that I can change the size of this. It's a bit weird from the API to have this information stored in the controller for the main selector...
I don't know anything about Java's `Flow`. My example is using Kotlin flows, which are in the package `kotlinx.coroutines`. It would add a dependency on that (but works fine on...
Actually, I was looking in the wrong gradle file. `kotlinx-coroutines-core` is already a dependency, so you could add that extension.
Something like: ```kotlin object ExampleSpec : ConfigSpec { val foo by optional(Foo(null)) } data class Foo(val bar: Bar?) data class Bar(val baz: String) ``` I didn't do a lot of...
Sorry, this was way more complicated than necessary. `String?` exhibits the same behavior. ```kotlin object ExampleSpec : ConfigSpec { val foo by optional(null) } ``` That will store the null...
I think I'm having a related issue. On linux, trying to open a database located in a hidden folder fails. In the file browser, the files do not appear (after...
Just an idea, why not find the font files in the filesystem? If you're only targeting Raspberry pi, you can look in /usr/share/fonts and ~/.fonts.
It seems like AGP 8.0.0-alpha02 works without this workaround. Perhaps this is just a bug in AGP 7.3/7.4.
Can you provide some kind of information on the crash? I'm using this in an app that targets sdk 30 and runs on Android 10 and 11 with no issues.