Neil Anthony

Results 10 comments of Neil Anthony

I also having this issue, here is my data I set in the loadMedia ``` client.loadMedia({ autoplay: true, mediaInfo: { contentUrl: 'http://commondatastorage.googleapis.com/gtv-videos-bucket/sample/BigBuckBunny.mp4', contentType: 'video/mp4', metadata: { images: [ { url:...

I downgraded the version to 1.4.0 and now it is working. I am using "react-native": "0.72.1" by the way

apparently the phone was set to dark mode . . is there a way to not follow the phone settings?

For RN 0.79.1 i generated a patch open RNExitApp.h and add replace import under RCT_NEW_ARCH_ENABLED with ``` #if RCT_NEW_ARCH_ENABLED #import #endif ``` open RNExitApp.mm and replace the import under #if...

does not work in RN 0.79.1

same here . . the patch does not work in RN 0.79.1

Same here, it keeps bumping up and the only way to fix it is to close the app to reset the session . . even if the component is unmount...

any solution on how to fix this? ``` let removeListener = session.on(HCESession.Events.HCE_STATE_READ, async () => { Alert.alert( 'Success', `NFC connection successfully completed.`, [{text: 'Ok', onPress: async () => { }}]...

maybe this will help https://github.com/crazycodeboy/react-native-splash-screen/issues/669

For me, both `const Contacts = NativeModules.Contacts ?? NativeContacts;` and `import Contacts from "react-native-contacts/src/NativeContacts"` works . . thanks