Skip to content

Commit a10c9b5

Browse files
committed
fix(android): non eager namespace replace in manifest
1 parent d25445b commit a10c9b5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/services/android-plugin-build-service.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -363,7 +363,7 @@ export class AndroidPluginBuildService implements IAndroidPluginBuildService {
363363
}
364364
private extractNamespaceFromManifest(manifestPath:string): string {
365365
const fileContent = this.$fs.readText(manifestPath);
366-
const contentRegex = new RegExp('package="(.*)"');
366+
const contentRegex = new RegExp('package="(.*?)"');
367367
const match = fileContent.match(contentRegex);
368368
let namespace: string;
369369
if (match) {

0 commit comments

Comments
 (0)