Skip to content

Commit 2e2f1b3

Browse files
author
Mihail Slavchev
committed
fix typo
1 parent 326f5ec commit 2e2f1b3

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

lib/services/android-project-service.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ class AndroidProjectService implements IPlatformProjectService {
166166
this.$childProcess.exec(cmd).wait();
167167
}
168168

169-
private parseProjectProrperies(projDir: string, destDir: string): void {
169+
private parseProjectProperties(projDir: string, destDir: string): void {
170170

171171
var projProp = path.join(projDir, "project.properties");
172172

@@ -183,7 +183,7 @@ class AndroidProjectService implements IPlatformProjectService {
183183
if (match) {
184184
var libRef: ILibRef = { idx: parseInt(match[1]), path: match[2].trim() };
185185
libRef.adjustedPath = thiz.$fs.isRelativePath(libRef.path) ? path.join(projDir, libRef.path) : libRef.path;
186-
thiz.parseProjectProrperies(libRef.adjustedPath, destDir);
186+
thiz.parseProjectProperties(libRef.adjustedPath, destDir);
187187
}
188188
});
189189

@@ -237,7 +237,7 @@ class AndroidProjectService implements IPlatformProjectService {
237237
var targetPath = path.join(projDir, "lib", platformData.normalizedPlatformName);
238238
this.$fs.ensureDirectoryExists(targetPath).wait();
239239

240-
this.parseProjectProrperies(libraryPath, targetPath);
240+
this.parseProjectProperties(libraryPath, targetPath);
241241

242242
shell.cp("-f", path.join(libraryPath, "*.jar"), targetPath);
243243
var projectLibsDir = path.join(platformData.projectRoot, "libs");

0 commit comments

Comments
 (0)