Bryan

Results 29 comments of Bryan

Odd, I was able to resolve my camera issue because I was using more than one camera. After removing the first camera (we use this as a preview camera before...

Looks like I figured out the audio issue as well. I have a video player that uses audio that probably causes an issue when coming back to the app.

Facing this same issue as well. Simply including the library is causing fetch to not work with android and crashes the app.

![Screen Shot 2022-08-23 at 4 21 26 PM](https://user-images.githubusercontent.com/65200903/186282831-d98e88a4-021e-4a1c-8b85-d6629a0f25a9.png) I am using `@sentry/react-native` along with using `@okta/okta-react-native`

> @ryanjwessel @salorsino you can try pass custom httpClient implementation as an option via `oktaAuthConfig` > > Refs: > > * https://github.com/okta/okta-auth-js#httprequestclient > * https://github.com/okta/okta-react-native/blob/master/index.js#L69 @shuowu-okta I did try passing...

I was able to resolve this by using whatwg-fetch and importing it at the top of my app. ``` // index.ts import { fetch as fetchPolyfill } from 'whatwg-fetch' global.fetch...