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 906aa01 commit 98e5598Copy full SHA for 98e5598
lib/services/android-project-service.ts
@@ -177,8 +177,9 @@ class AndroidProjectService implements IPlatformProjectService {
177
178
var lines = this.$fs.readText(projProp, "utf-8").wait().split(os.EOL);
179
180
+ var regEx = /android\.library\.reference\.(\d+)=(.*)/;
181
lines.forEach((elem, idx, arr) => {
- var match = elem.match(/android\.library\.reference\.(\d+)=(.*)/);
182
+ var match = elem.match(regEx);
183
if (match) {
184
var libRef: ILibRef = { idx: parseInt(match[1]), path: match[2].trim() };
185
libRef.adjustedPath = this.$fs.isRelativePath(libRef.path) ? path.join(projDir, libRef.path) : libRef.path;
0 commit comments