Mark Murphy
Mark Murphy
I tried integrating Chuck into my playground app for CWAC-NetSecurity. Using Chuck either as a regular or network interceptor resulted in: ``` java.lang.NullPointerException: url at com.android.internal.util.Preconditions.checkNotNull(Preconditions.java:60) at android.content.ContentResolver.insert(ContentResolver.java:1224) at com.readystatesoftware.chuck.ChuckInterceptor.create(ChuckInterceptor.java:172)...
I just posted [a sample project](https://github.com/commonsguy/cw-omnibus/tree/master/Media/VideoList) that uses `SmartImageView` to display video thumbnails obtained from `MediaStore`. The `SmartImage` implementation is fairly straightforward: ``` private static class VideoThumbnailImage implements SmartImage {...
I see that on [this library's Web page on loopj.com](http://loopj.com/android-smart-image-view/) you state that it is licensed under the Apache License 2.0. However, your source code does not appear to have...
`android.view` is for official Android code. AFAIK, your menu is not part of official Android. I would therefore suggest that you move your `View` to a package name that is...
Right now, `DocumentFile` (and my clone) does IPC leading to disk I/O on the current thread, which is not ideal. Figure out some sort of caching strategy, then offer an...
If we get passed a `file` scheme on the `Uri`, create either a document or tree `Uri` depending on whether the file is a directory.
https://code.google.com/p/android/issues/detail?id=199562 complains about `getParentFile()` not being supported with `DocumentFile`. Double-check that, and work out tests to confirm the behavior.
https://koz.io/pinning-cve-2016-2402/ Try something based on this for certificate pinning tests. This would be two-fold: standard pinning and the soft-pin/TOFU stuff.
The `tag` cannot reliably be changed once set. Enforce this by making it `final`.