Skip to content

Commit

Permalink
fix(android): append missing new lines on injected cordova files (#4058)
Browse files Browse the repository at this point in the history
  • Loading branch information
jcesarmobile authored Jan 13, 2021
1 parent 51d1de3 commit dbdc78d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ static String readFile(AssetManager assetManager, String fileName) throws IOExce
StringBuffer buffer = new StringBuffer();
String line;
while ((line = reader.readLine()) != null) {
buffer.append(line);
buffer.append(line + "\n");
}

return buffer.toString();
Expand Down

0 comments on commit dbdc78d

Please sign in to comment.