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 0db39a3 commit 85b7b8dCopy full SHA for 85b7b8d
packages/vscode-extension/src/builders/buildAndroid.ts
@@ -89,7 +89,7 @@ async function getNamespaceFromGradle(projectRoot: string): Promise<string | nul
89
}
90
91
// The namespace field in build.gradle defines the Java package name for the app's code.
92
- const matchResult = gradleBuild.contents.match(/namespace\s+['"].*['"]/);
+ const matchResult = gradleBuild.contents.match(/namespace\s+['"](.*)['"]/);
93
return matchResult?.[1] ?? null;
94
95
0 commit comments