Fixed
Status Update
Comments
fr...@gmail.com <fr...@gmail.com> #2
I have also seen this issue, careful analysis has shown it appears to be related to the canary version of the caf_receiver framework.
In debug mode you will see: Load failed: cast.o.media.Il.create is not a function
This function appears to be missing inhttps://www.gstatic.com/cast/sdk/libs/caf_receiver/canary/cast_receiver_framework.js , the code in the non-canary framework, located at https://www.gstatic.com/cast/sdk/libs/caf_receiver/v3/cast_receiver_framework.js doesn't have this issue.
In debug mode you will see: Load failed: cast.o.media.Il.create is not a function
This function appears to be missing in
fr...@gmail.com <fr...@gmail.com> #3
I'm having this issue with 1 of my 3 Chromecasts and actually bought a new Chromecast because I thought it was broken.
Description
getResultData returns the ActivityResult of an activity that has finished.
ActivityResultMatcher provides matchers to verify the resultCode and the resultData of the activityResult.
Possible implementation is published here:
The matchers should go into package android.support.test.espresso.contrib;
Use case:
The user clicks on a button of an activity A that picks a content item, then the activity returns this item as the activity result usually in onActivityResult of the parent activity P.
To simplify testing the activity result should be tested within the test of activity A