Andrew Schenk

Results 10 issues of Andrew Schenk

Accessing view manager configs directly off UIManager via UIManager['R5VideoView'] is no longer supported. Use UIManager.getViewManagerConfig('R5VideoView') instead.

replace deprecated 'compile' with 'implementation'

fix path for manual android install

Following the setup instructions listed here. React Native: 0.62.2 Target: iOS Debug: true ``` npx react-native init Red5ProDemo ``` Clean new 62.2 react native app is unrunnable once the install...

AVAudioSession allows you to set multiple options at the same time. ``` [[AVAudioSession sharedInstance] setCategory:AVAudioSessionCategoryPlayAndRecord withOptions:AVAudioSessionCategoryOptionDefaultToSpeaker | AVAudioSessionCategoryOptionAllowBluetoothA2DP | AVAudioSessionCategoryOptionAllowBluetooth error:nil]; ``` Maybe I'm being thick, but I cannot figure...

Crashes on Android when using source={{uri: ...}} `Image.getSize(this.props.source.uri, (width, height) => {` needs to be `let source = this.props.source; ` `if (typeof(source) !== "string") { ` ` source = this.props.source.uri;...

## 🔹 JIRA Ticket(s) if any N/A ## ✏️ Description When hot refreshing a react-native app, it is possible to cause a crash when the Iterable registration has not completed....

review after newarch

Is there an existing way to handle RCTConvert of [custom values](https://archive.reactnative.dev/docs/0.8/native-modules-ios#enum-constants)?

This PR fixes an issue where the Google Play Store would complain that this library was bundling non 16KB page aligned .so files. Specifically - base/lib/x86_64/libtensorflowlite_gpu_jni.so - base/lib/x86_64/libtensorflowlite_jni.so v1.4.0 of...