Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Ampersands are not correctly escaped in ios plist files #1003

Open
trusis666 opened this issue Feb 5, 2018 · 0 comments
Open

Ampersands are not correctly escaped in ios plist files #1003

trusis666 opened this issue Feb 5, 2018 · 0 comments

Comments

@trusis666
Copy link

Reported on the forum.

Fuse version 1.5.0 (build 15046) in macOS

Ampersands (and likely other invalid xml characters) are not correctly escaped in the plist files generated for ios builds.

For example, if the ios.BundleName property is set to "A & B" then the generated project plist file will read:

<key>CFBundleDisplayName</key>
<string>A & B</string>

This is incorrect, and not readable by Xcode. Instead, special characters should be xml encoded as per the example:

<key>CFBundleDisplayName</key>
<string>A &amp; B</string>

Currently invalid characters in certain properties generate Xcode project files that cannot, or can only partially be parsed.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant