We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d25445b commit a10c9b5Copy full SHA for a10c9b5
lib/services/android-plugin-build-service.ts
@@ -363,7 +363,7 @@ export class AndroidPluginBuildService implements IAndroidPluginBuildService {
363
}
364
private extractNamespaceFromManifest(manifestPath:string): string {
365
const fileContent = this.$fs.readText(manifestPath);
366
- const contentRegex = new RegExp('package="(.*)"');
+ const contentRegex = new RegExp('package="(.*?)"');
367
const match = fileContent.match(contentRegex);
368
let namespace: string;
369
if (match) {
0 commit comments