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 d5faecf commit 7c20483Copy full SHA for 7c20483
lib/services/android-project-service.ts
@@ -246,7 +246,10 @@ class AndroidProjectService implements IPlatformProjectService {
246
247
var targetLibPath = path.join(targetPath, path.basename(libraryPath));
248
249
- this.updateProjectReferences(platformData.projectRoot, targetLibPath);
+ var libProjProp = path.join(libraryPath, "project.properties");
250
+ if (this.$fs.exists(libProjProp).wait()) {
251
+ this.updateProjectReferences(platformData.projectRoot, targetLibPath);
252
+ }
253
}).future<void>()();
254
}
255
0 commit comments