Mark Murphy

Results 53 issues of Mark Murphy

In the project `README`, you have: ```xml ``` However, this is invalid XML. That HTML needs to be escaped: ```xml ```

I am sporadically working on [a test battery to exercise `SupportSQLiteDatabase` implementations such as yours](https://gitlab.com/commonsguy/support-db-tests). My tests work fine with Requery 3.21.0 and 3.23.1. However, with 3.24.0, the tests crash...

bug

While testing CWAC-SafeRoom, I converted a bunch of existing tests for AOSP and SQLCipher for Android into [a test suite that exercises the support database API](https://gitlab.com/commonsguy/support-db-tests). When testing Requery, most...

enhancement

Given this page: ```html fun main() { println("hello, world!") } ``` If you load that page directly in a Web browser (`file:` scheme), the Playground shows the green "Run" button...

The usage notes in the project README suggests that you use `1.0.0`. However `1.2.0` seems to be the latest (jitpack knows of a `1.3.0`, but it's in an error state)....

`GsonBodyConverter` seems to only pay attention to the `data` of the response from the server, ignoring any `error`.

I have run across a couple of edge cases that I thought I'd point out. The attached project should reproduce them — at least, it does for me here (macOS,...

`MaterialTabs` depends on a `ViewPager`, which in turn depends on a `PagerAdapter`. If the `PagerAdapter` is modified to return a lower value from `getCount()` than it had returned earlier, and...

You are applying the supplied `AnimationListener` to `animation`. However, you replace `animation` on every `expand()` and `collapse()` call, and the new `Animation` does not have the listener. Either don't keep...

Based on the JavaDocs, I had presumed that `stop()`, called on an `AsyncHttpServer`, would revert the `listen()` call and stop the server from listening on the port. That does not...