You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
this.$errors.fail("The project name does not start with letter and will fail to build for Android. If You want to create project with this name add --force to the create command.");
returnthis.promptForNewName("The project name does not start with letter and will fail to build for Android.",projectName,validateOptions).wait();
29
+
}
30
+
31
+
if(projectName.toUpperCase()==="APP"){
32
+
if(!userCanInteract){
33
+
this.$errors.fail("You cannot build applications named 'app' in Xcode. Consider creating a project with different name. If You want to create project with this name add --force to the create command.");
34
+
}
35
+
36
+
returnthis.promptForNewName("You cannot build applications named 'app' in Xcode. Consider creating a project with different name.",projectName,validateOptions).wait();
28
37
}
29
38
30
39
returnprojectName;
@@ -36,9 +45,9 @@ export class ProjectNameService implements IProjectNameService {
0 commit comments