Skip to content

Commit c1aab70

Browse files
FatmeFatme
authored andcommitted
Merge pull request #343 from NativeScript/fatme/fix-cfbundleidentifier
Fix CFBUNDLEIDENTIFIER
2 parents a5c9481 + 34fe386 commit c1aab70

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/services/ios-project-service.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ class IOSProjectService implements IPlatformProjectService {
9090
public interpolateData(projectRoot: string): IFuture<void> {
9191
return (() => {
9292
var infoPlistFilePath = path.join(projectRoot, IOSProjectService.IOS_PROJECT_NAME_PLACEHOLDER, util.format("%s-%s", IOSProjectService.IOS_PROJECT_NAME_PLACEHOLDER, "Info.plist"));
93-
shell.sed('-i', "__CFBundleIdentifier__", this.$projectData.projectId, infoPlistFilePath);
93+
shell.sed('-i', "__CFBUNDLEIDENTIFIER__", this.$projectData.projectId, infoPlistFilePath);
9494

9595
this.replaceFileName("-Info.plist", path.join(projectRoot, IOSProjectService.IOS_PROJECT_NAME_PLACEHOLDER)).wait();
9696
this.replaceFileName("-Prefix.pch", path.join(projectRoot, IOSProjectService.IOS_PROJECT_NAME_PLACEHOLDER)).wait();

0 commit comments

Comments
 (0)