Exemple #1
0
	generate(tool, tmp, bin) {
		this.ios.findIdentity(tool);
		this.ios.completeInfo();
		this.ios.addResources(tool);
		super.generate(tool, tmp, bin);
		FS.writeFileSync(tmp + "/Entitlements.plist", PLIST.stringify(this.ios.entitlements));
		FS.writeFileSync(tmp + "/Info.plist", PLIST.stringify(this.ios.info));
	}
Exemple #2
0
	generate(tool, tmp, bin) {
		this.ios.findIdentity(tool);
		this.ios.addResources(tool);
		this.ios.completeInfo(tool);
		this.ios.info.CFBundleExecutable = this.tree.application;
		super.generate(tool, tmp, bin);
		FS.writeFileSync(tmp + "/Entitlements.plist", PLIST.stringify(this.ios.entitlements));
		FS.writeFileSync(tmp + "/Info.plist", PLIST.stringify(this.ios.info));
	}