@@ -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