Skip to content

Commit c3467eb

Browse files
authored
Merge pull request #71 from pwa-builder/bugfix-4710-fix-app-package-with-special-characters
fix special characters breaking the build process #4710
2 parents b7fa46d + 111a767 commit c3467eb

File tree

1 file changed

+6
-6
lines changed
  • Microsoft.PWABuilder.IOS.Web/Resources/ios-project-src/pwa-shell.xcodeproj

1 file changed

+6
-6
lines changed

Microsoft.PWABuilder.IOS.Web/Resources/ios-project-src/pwa-shell.xcodeproj/project.pbxproj

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
/* Begin PBXFileReference section */
2626
25D3517E267A48E0002E5DC0 /* GoogleService-Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = "GoogleService-Info.plist"; path = "pwa-shell/GoogleService-Info.plist"; sourceTree = "<group>"; };
2727
4C1C2162A8048FDF52B2A9D0 /* Pods-pwa-shell.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-pwa-shell.release.xcconfig"; path = "Target Support Files/Pods-pwa-shell/Pods-pwa-shell.release.xcconfig"; sourceTree = "<group>"; };
28-
59333BAA25CFF706003392A4 /* PWAShell.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = PWAShell.app; sourceTree = BUILT_PRODUCTS_DIR; };
28+
59333BAA25CFF706003392A4 /* PWAShell.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "PWAShell.app"; sourceTree = BUILT_PRODUCTS_DIR; };
2929
595F239A25CEFBFD0053416C /* Settings.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; name = Settings.swift; path = "pwa-shell/Settings.swift"; sourceTree = "<group>"; };
3030
595F239B25CEFBFD0053416C /* Entitlements */ = {isa = PBXFileReference; lastKnownFileType = folder; name = Entitlements; path = "pwa-shell/Entitlements"; sourceTree = "<group>"; };
3131
595F239C25CEFBFD0053416C /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; name = Assets.xcassets; path = "pwa-shell/Assets.xcassets"; sourceTree = "<group>"; };
@@ -36,7 +36,7 @@
3636
595F23A225CEFBFE0053416C /* AppDelegate.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; name = AppDelegate.swift; path = "pwa-shell/AppDelegate.swift"; sourceTree = "<group>"; };
3737
595F23A325CEFBFE0053416C /* Printer.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; name = Printer.swift; path = "pwa-shell/Printer.swift"; sourceTree = "<group>"; };
3838
595F23A425CEFBFE0053416C /* WebView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; name = WebView.swift; path = "pwa-shell/WebView.swift"; sourceTree = "<group>"; };
39-
BE9D7FFB2FBE6EEBCA807B6A /* Pods_pwa_shell.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_pwa_shell.framework; sourceTree = BUILT_PRODUCTS_DIR; };
39+
BE9D7FFB2FBE6EEBCA807B6A /* Pods_pwa_shell.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = "Pods_pwa_shell.framework"; sourceTree = BUILT_PRODUCTS_DIR; };
4040
BEE8E5C625AE96C07F8AADED /* Pods-pwa-shell.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-pwa-shell.debug.xcconfig"; path = "Target Support Files/Pods-pwa-shell/Pods-pwa-shell.debug.xcconfig"; sourceTree = "<group>"; };
4141
CDC0FE262388222B002C8D56 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = "pwa-shell/Base.lproj/Main.storyboard"; sourceTree = "<group>"; };
4242
CDC0FE282388222B002C8D56 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = "pwa-shell/Base.lproj/LaunchScreen.storyboard"; sourceTree = "<group>"; };
@@ -382,8 +382,8 @@
382382
);
383383
MARKETING_VERSION = 1;
384384
CURRENT_PROJECT_VERSION = 1;
385-
PRODUCT_BUNDLE_IDENTIFIER = {{PWABuilder.iOS.bundleId}};
386-
PRODUCT_NAME = PWAShell;
385+
PRODUCT_BUNDLE_IDENTIFIER = "{{PWABuilder.iOS.bundleId}}";
386+
PRODUCT_NAME = "PWAShell";
387387
PROVISIONING_PROFILE_SPECIFIER = "";
388388
SUPPORTS_MACCATALYST = YES;
389389
SWIFT_OPTIMIZATION_LEVEL = "-Onone";
@@ -410,8 +410,8 @@
410410
);
411411
MARKETING_VERSION = 1;
412412
CURRENT_PROJECT_VERSION = 1;
413-
PRODUCT_BUNDLE_IDENTIFIER = {{PWABuilder.iOS.bundleId}};
414-
PRODUCT_NAME = PWAShell;
413+
PRODUCT_BUNDLE_IDENTIFIER = "{{PWABuilder.iOS.bundleId}}";
414+
PRODUCT_NAME = "PWAShell";
415415
SUPPORTS_MACCATALYST = YES;
416416
SWIFT_OPTIMIZATION_LEVEL = "-Osize";
417417
SWIFT_VERSION = 5.0;

0 commit comments

Comments
 (0)