Nate
Nate
Would appreciate this mentioned in the _Known Issues_ section of the README, since generating coverage reports is a fairly common task and fixing this issue doesn't seem to be a...
sure, but please add the full stack trace and describe the situation
Make sure you're calling `RxActivityResult.getInstance(context)` with the application context, not an activity's - example `RxActivityResult.getInstance(context.getApplicationContext())`. Works for me when i do that.
Oh, right, interesting. I'm testing it with the demo app. It works when selecting an image with `Intent.createChooser`, but the file url extra is missing from the `CropImageActivity` result. Yeah,...
Oh, its because the Activity is leaked. My example has it too. The calling Activity will be destroyed when the image capture Activity starts. So, when the result returns, a...