You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We've recently encountered an issue where some of our customers are unable to save vCard files on certain Android devices, specifically those running Android version 14.
Here's the sequence of events:
The user initiates the import process.
An alert message appears stating "Contact will be imported shortly."
However, even after waiting for over an hour, no contact gets added.
As an attempted workaround, we tried changing the vCard version to 4.0 by replacing "VERSION:3.0" with "VERSION:4.0" in the vCard.toString() method. This allowed the vCard to be saved again, but it introduced a host of other problems within the vCard itself.
Is anyone else experiencing this issue or have insights on a potential solution? Any help or guidance would be greatly appreciated.
Thank you in advance for your time and assistance.
The text was updated successfully, but these errors were encountered:
I can't think of a reason for it not to work with any specific version of Android. Most systems will support even older versions than v3.
If you can provide some debug logs, they could help to identify the issue.
Please understand that specifying VERSION:4.0 means the parser will be different and thus most likely fail, since it's a major version bump with likely breaking changes. This library only supports VERSION:3.0 and there are no immediate plans to provide support for other versions.
Feel free to fork the library and adjust it to your needs. If you feel like sharing your changes, you are also encouraged to open a pull request.
Hello,
We've recently encountered an issue where some of our customers are unable to save vCard files on certain Android devices, specifically those running Android version 14.
Here's the sequence of events:
As an attempted workaround, we tried changing the vCard version to 4.0 by replacing "VERSION:3.0" with "VERSION:4.0" in the vCard.toString() method. This allowed the vCard to be saved again, but it introduced a host of other problems within the vCard itself.
Is anyone else experiencing this issue or have insights on a potential solution? Any help or guidance would be greatly appreciated.
Thank you in advance for your time and assistance.
The text was updated successfully, but these errors were encountered: