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 bd9c46e commit 906aa01Copy full SHA for 906aa01
lib/services/android-project-service.ts
@@ -198,7 +198,7 @@ class AndroidProjectService implements IPlatformProjectService {
198
private getProjectReferences(projDir: string): ILibRef[]{
199
var projProp = path.join(projDir, "project.properties");
200
201
- var lines = fs.readFileSync(projProp, { encoding: "utf-8" }).split(os.EOL);
+ var lines = this.$fs.readText(projProp, "utf-8").wait().split(os.EOL);
202
203
var refs: ILibRef[] = [];
204
0 commit comments