Skip to content

Commit

Permalink
Fix minor issue to versionCode in XML
Browse files Browse the repository at this point in the history
  • Loading branch information
javiersantos committed Apr 1, 2017
1 parent 2236f98 commit f60a077
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ public void endElement(String uri, String localName, String name) throws SAXExce
if (localName.equals("latestVersion")) {
update.setLatestVersion(builder.toString().trim());
} else if (localName.equals("latestVersionCode")) {
update.setLatestVersionCode(Integer.valueOf(builder.toString()));
update.setLatestVersionCode(Integer.valueOf(builder.toString().trim()));
} else if (localName.equals("releaseNotes")) {
update.setReleaseNotes(builder.toString().trim());
} else if (localName.equals("url")) {
Expand Down

0 comments on commit f60a077

Please sign in to comment.