diff --git a/lib/services/android-project-service.ts b/lib/services/android-project-service.ts index fdf04a8516..21aa7de351 100644 --- a/lib/services/android-project-service.ts +++ b/lib/services/android-project-service.ts @@ -204,6 +204,7 @@ class AndroidProjectService extends projectServiceBaseLib.PlatformProjectService private parseProjectProperties(projDir: string, destDir: string): IFuture { // projDir is libraryPath, targetPath is the path to lib folder return (() => { + projDir = projDir.trim(); let projProp = path.join(projDir, "project.properties"); if (!this.$fs.exists(projProp).wait()) { this.$logger.warn("Warning: File %s does not exist", projProp);