[
https://issues.apache.org/jira/browse/CB-10964?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15233074#comment-15233074
]
ASF subversion and git services commented on CB-10964:
------------------------------------------------------
Commit d28ca67edb86aa86b1aafdbdbaf685e838737026 in cordova-android's branch
refs/heads/master from [~daserge]
[ https://git-wip-us.apache.org/repos/asf?p=cordova-android.git;h=d28ca67 ]
CB-10964 Handle build.json file starting with a BOM. This closes #286
> Handle build.json file starting with a BOM
> ------------------------------------------
>
> Key: CB-10964
> URL: https://issues.apache.org/jira/browse/CB-10964
> Project: Apache Cordova
> Issue Type: Bug
> Components: Android, iOS, Windows
> Affects Versions: 3.5.0
> Environment: All development platforms
> Reporter: Shuqian Ying
> Assignee: Sergey Shakhnazarov
> Priority: Minor
>
> The generated build.js file under the "platforms\android\cordova\lib"
> directory of a project throws exceptions when reading the utf-8 encoded
> build.json file under the root directory of the same project that starts with
> a byte order mark (BOM), due to a bug/feature of the Javascript JSON.parse
> method. Such kind of files are normally generated in automated build systems,
> like ours.
> The solution we found is to strip that mark before parsing, namely, inside of
> the function "parseOpts", use the following line
> ....
> var config = JSON.parse(buildjson.replace(/^\uFEFF/, ''));
> ...
> instead of
> ....
> var config = JSON.parse(buildjson);
> ...
> This has always been a problem up to the most recent stable version (3.5.0)
> and most likely to cause the same problem for other platforms, besides
> android.
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]