File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -49,10 +49,10 @@ class AndroidProjectService implements IPlatformProjectService {
4949 return ( ( ) => {
5050 this . validateAndroidTarget ( frameworkDir ) ; // We need framework to be installed to validate android target so we can't call this method in validate()
5151
52- var paths = "assets gen libs res" . split ( ' ' ) . map ( p => path . join ( frameworkDir , p ) ) ;
52+ var paths = "assets libs res" . split ( ' ' ) . map ( p => path . join ( frameworkDir , p ) ) ;
5353 shell . cp ( "-R" , paths , projectRoot ) ;
5454
55- paths = ".project AndroidManifest.xml project.properties" . split ( ' ' ) . map ( p => path . join ( frameworkDir , p ) ) ;
55+ paths = "AndroidManifest.xml project.properties" . split ( ' ' ) . map ( p => path . join ( frameworkDir , p ) ) ;
5656 shell . cp ( "-f" , paths , projectRoot ) ;
5757
5858 // Create src folder
You can’t perform that action at this time.
0 commit comments