Skip to content

Commit 96f4b81

Browse files
Fatme HavaluovaFatme Havaluova
authored andcommitted
Change default appid
1 parent d20e6d6 commit 96f4b81

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

lib/commands/post-install.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ export class PostInstallCommand implements ICommand {
2020
public execute(args: string[]): IFuture<void> {
2121
return (() => {
2222
if(process.platform !== "win32") {
23-
this.$fs.chmod(this.$staticConfig.adbFilePath, 755).wait();
23+
this.$fs.chmod(this.$staticConfig.adbFilePath, "0777").wait();
2424
}
2525

2626
this.enableAutoCompletion().wait();

lib/services/project-service.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ export class ProjectService implements IProjectService {
6060
}
6161
this.$projectNameValidator.validate(projectName);
6262

63-
projectId = options.appid || this.$projectHelper.generateDefaultAppId(projectName);
63+
projectId = options.appid || this.$projectHelper.generateDefaultAppId(projectName, "org.nativescript");
6464

6565
var projectDir = path.join(path.resolve(options.path || "."), projectName);
6666
this.$fs.createDirectory(projectDir).wait();

0 commit comments

Comments
 (0)