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
Just spent a couple of hours figuring out why this plugin was corrupting my plist file and wanted to share my findings.
error: couldn't parse contents of '/my-app/platforms/ios/my-app/my-app-Info.plist': The data couldn’t be read because it isn’t in the correct format.
Turns out plist.js v2.0.1 has a bug (it is fixed, but not yet released to NPM) where empty strings are parsed to null.
Repo issue can be found here : TooTallNate/plist.js#79
As a temporary workaround, you can add the specific commit, containing the fix, as a dependecy to your own package.json:
Just spent a couple of hours figuring out why this plugin was corrupting my plist file and wanted to share my findings.
Turns out plist.js v2.0.1 has a bug (it is fixed, but not yet released to NPM) where empty strings are parsed to
null
.Repo issue can be found here : TooTallNate/plist.js#79
As a temporary workaround, you can add the specific commit, containing the fix, as a dependecy to your own
package.json
:The text was updated successfully, but these errors were encountered: