diff --git a/cli/src/cordova.ts b/cli/src/cordova.ts index fb1b9e858..067df0e58 100644 --- a/cli/src/cordova.ts +++ b/cli/src/cordova.ts @@ -423,7 +423,7 @@ ${applicationXMLEntries.join('\n')} ${rootXMLEntries.join('\n')} `; - 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); }