Skip to content

Commit

Permalink
fix(cli/cordova): replace $PACKAGE_NAME with ${applicationId} (#3030)
Browse files Browse the repository at this point in the history
  • Loading branch information
robingenz authored Jun 10, 2020
1 parent 1d7fd2c commit 7a2a45f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cli/src/cordova.ts
Original file line number Diff line number Diff line change
Expand Up @@ -423,7 +423,7 @@ ${applicationXMLEntries.join('\n')}
</application>
${rootXMLEntries.join('\n')}
</manifest>`;
content = content.replace(new RegExp(('$PACKAGE_NAME').replace('$', '\\$&'), 'g'), config.app.appId);
content = content.replace(new RegExp(('$PACKAGE_NAME').replace('$', '\\$&'), 'g'), '${applicationId}');
if (existsSync(manifestPath)) {
await writeFileAsync(manifestPath, content);
}
Expand Down

0 comments on commit 7a2a45f

Please sign in to comment.