We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5c4aade commit 913188aCopy full SHA for 913188a
1 file changed
lib/services/android-project-service.ts
@@ -49,10 +49,10 @@ class AndroidProjectService implements IPlatformProjectService {
49
return (() => {
50
this.validateAndroidTarget(frameworkDir); // We need framework to be installed to validate android target so we can't call this method in validate()
51
52
- var paths = "assets gen libs res".split(' ').map(p => path.join(frameworkDir, p));
+ var paths = "assets libs res".split(' ').map(p => path.join(frameworkDir, p));
53
shell.cp("-R", paths, projectRoot);
54
55
- paths = ".project AndroidManifest.xml project.properties".split(' ').map(p => path.join(frameworkDir, p));
+ paths = "AndroidManifest.xml project.properties".split(' ').map(p => path.join(frameworkDir, p));
56
shell.cp("-f", paths, projectRoot);
57
58
// Create src folder
0 commit comments