Andrew Kelly
Andrew Kelly
@richardjbs This will still show the text on the left because you have hard-coded a western character set. If you use a reference to @string/hello_world and replace that in strings.xml...
Did this ever get released, I'm looking to log my websocket traffic in a similar fashion to my http traffic.
I have the same problem, but I'm not using the maven-publish plugin at all, and I'm not publishing my lint checks via a library module, I'm just using them locally....
I had the same error ``` java.lang.UnsupportedOperationException: class redefinition failed: attempted to change the schema (add/remove fields) ``` I fixed it by removing this line from my test class. ```...
I too would love to see a coil-desktop implementation, even if it was just using JVM calls under the hood, similar to this post https://dev.to/gerardpaligot/sharing-compose-components-between-android-and-desktop-17kg
Being able to specify a custom filename would be great, instead of the hard-coded list which includes things like packagename ``` internal fun Snapshot.toFileName( delimiter: String = "_", extension: String...
I've currently tweaked the adapter to default to the current month if nothing is specified in the xml file. ``` calendar = Calendar.getInstance(); firstMonth = typedArray.getInt(R.styleable.DayPickerView_firstMonth, calendar.get(Calendar.MONTH)); lastMonth = typedArray.getInt(R.styleable.DayPickerView_lastMonth,...
The app I work on is branded for different clients, and also runs on different vendor hardware (each with their own SDKs)....its not an app for mobile phones, so we...
@CedNaru I'd like to help with this issue, do you think it'd be a good entry-level one to tackle? I've done some codegen stuff IRL so adding additional outputs using...
Having a quick look at this one, the cache should be pretty simple (I think). ``` class LRUCache(private val capacity: Int) : LinkedHashMap(capacity, 0.75f, true) { override fun removeEldestEntry(eldest: MutableMap.MutableEntry?):...