kUTTypeVCard was deprecated in iOS 15.0: Use UTTypeVCard instead? - uiactivityviewcontroller

I am getting warning/ error kUTTypeVCard was deprecated in iOS 15.0: Use UTTypeVCard instead? While sharing location through vcard. In NSItemProvider under typeIdemtifier I have written kUTTypeVCard and for that it's throwing that error and after making changes suggested by Xcode it's still throwing error.

Related

React Native: I removed rn-fetch-blob, and now another package throws an error

I was using rn-fetch-blob in my React Native app. I replaced it with react-native-blob-util. I'm also using redux-persist-filesystem-storage, which uses rn-fetch-blob. redux-persist-filesystem-storage started throwing an error (null is not an object (evaluating 'RNFetchBlob.DocumentDir')) once I uninstalled rn-fetch-blob. I assumed that removing node_modules/rn-fetch-blob would have no effect on redux-persist-filesystem-storage since redux-persist-filesystem-storage uses node_modules/redux-persist-filesystem-storage/node_modules/rn-fetch-blob.
Is my reasoning correct here? What am I misunderstanding?
Maybe this happens, because sometimes your package is not perfectly installed. So you can try installing rn-fetch-blob or again do a proper installation of redux-persist-filesystem-storage, because in the new version they already replaced rn-fetch-blob with react-native-blob-util.

react native and expo: problem sending log messages symbolicatedStack

Recently I updated react (0.62.2) and expo (37.0.12). Nearly everything works fine. Except upon every App reload and shortly after an error occured, an error screen pops up that displays
console.error: There was a problem sending log messages to your development environment TypeError:
symbolicatedStack.map is not a function. (In 'symbolicatedStack.map(removeProjectRoot)',
'symbolicatedStack.map' is undefined
covering the previously occured error.
since there is no symbolicatedStack written by myself, I suspect its an internal error, but I can't figure out what it is. Upon pressing "Dismiss" everything works fine again. (Till the next reload/error)
Expo / React version are compatible according to their offical websites.
I guess this is dues to version missmatch try running expo upgrade command. It should resolve your issue.

TypeError: undefined is not an object (evaluating 'row[OBJECT_COLUMN_NAME] = key') | React Native

Currently, I am building a MobileApp with React-Native and everything works fine until today :/
Unfortunately today the app throws an error (see below) after a successful build!
[TypeError: undefined is not an object (evaluating 'row[OBJECT_COLUMN_NAME] = key')]
BUT this error only appears in the normal mode -> if I switch to the debug mode everything is working without any further problems.
So after that, I started searching the trigger of this error and I found it (See below)
Your_App/node_modules/react-native/Libaries/polyfills/console.js (Line 449)
But as you can see that isn't from me it's from React-Native and I am not able to resolve this problem
After a long research on the internet, I couldn't figure out anything because nobody has got this error yet :/
But I think it has something to do with the newest react-native firebase version 6.0.0 (https://invertase.io/blog/react-native-firebase-v6)
Because it fails near there (See below)
Note: After recreating the app (not hard with git) the error appears again after a while :/
Note: A empty App still works on my engine
What do I use:
react-native 0.61.5
java 13
(All used libraries)
I would appreciate help ^^
Thank you
After I filled my code completely with console.logs... I found out that React Native does not work with console.table in non debug mode.
This is easily fixed by using console.table only when the app is in debug mode. Just check if the debug mode is enabled ^^
const isDebuggingEnabled = (typeof atob !== 'undefined');
That's it

Uncaught SyntaxError: Use of const in strict mode in chrome 40

Our ReactJS application created using create-react-app is not getting indexed in google. Upon investigation, found out that google crawler is using Chrome v40 engine to parse client side apps. So I got hold of Chrome 40 and tried to load the page. I got an error in console saying
Loading chunk 13 failed. Uncaught SyntaxError: Use of const in strict
mode.
I tried to apply polyfill (babel polyfill as well as some others) but this error is not going away.
Any advise? Is there anything I can do to make create-react-app to correctly transpile the code to Chrome 40 compatible ?
The issue happened because i was using a component which was not compatible. https://github.com/yahoo/react-stickynode. It worked perfectly after i removed this.

TypeError in qx.ui.mobile.core.EventHandler after update to qooxdoo 1.5

After updating to qooxdoo 1.5 I am seeing this error:
Uncaught TypeError: Expecting a function in instanceof check, but got #<HTMLDocument>
:8080/qooxdoo-1.5-sdk/framework/source/class/qx/ui/mobile/core/EventHandler.js?nocache=0.38786523090675473:245
Strange thing is, that I am not using the qx.ui.mobile.* classes at all. This is with a source-all build and "qx.debug" set.
As for including the qx.ui.mobile.* classes, this comes from using the source-all job, which includes, well, all known classes, also the qx.ui.mobile.* ones. Try using the normal source job, which only includes the classes necessary for your app.
As for the error, please open a bug report at http://bugzilla.qooxdoo.org. Please specify the OS and browser you are using when you get the error. If possible, supply a minimal Application.js (or a Playground link) that reproduces the error. Cheers.

Resources