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 {
49
49
return ( ( ) => {
50
50
this . validateAndroidTarget ( frameworkDir ) ; // We need framework to be installed to validate android target so we can't call this method in validate()
51
51
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 ) ) ;
53
53
shell . cp ( "-R" , paths , projectRoot ) ;
54
54
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 ) ) ;
56
56
shell . cp ( "-f" , paths , projectRoot ) ;
57
57
58
58
// Create src folder
You can’t perform that action at this time.
0 commit comments