Skip to content

Commit fa8a314

Browse files
committed
Update types.ts
1 parent 5d49579 commit fa8a314

File tree

1 file changed

+2
-8
lines changed

1 file changed

+2
-8
lines changed

src/json/types.ts

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1109,7 +1109,7 @@ export interface BuildSettings {
11091109
INFOPLIST_OTHER_PREPROCESSOR_FLAGS?: string;
11101110

11111111
/** Specifies the output encoding for the output `Info.plist`. */
1112-
INFOPLIST_OUTPUT_FORMAT?: "binary" | "XML" | (string & {});
1112+
INFOPLIST_OUTPUT_FORMAT?: "binary" | "XML";
11131113

11141114
/** Specifies the path to the bundle's information property list file. */
11151115
INFOPLIST_PATH?: string;
@@ -1406,9 +1406,6 @@ export interface BuildSettings {
14061406
/** App is Available Only on Apple Watch */
14071407
INFOPLIST_KEY_WKWatchOnly?: BoolString;
14081408

1409-
// Platform-specific Info.plist key overrides
1410-
"INFOPLIST_KEY_UIApplicationSceneManifest_Generation[sdk=iphoneos*]"?: BoolString;
1411-
14121409
// ============================================================================
14131410
// Code Signing
14141411
// ============================================================================
@@ -1417,10 +1414,7 @@ export interface BuildSettings {
14171414
CODE_SIGN_ENTITLEMENTS?: string;
14181415

14191416
/** The name of a valid code-signing certificate in a keychain. */
1420-
CODE_SIGN_IDENTITY?: string;
1421-
1422-
/** SDK-specific code signing identity override. */
1423-
"CODE_SIGN_IDENTITY[sdk=iphoneos*]"?: "iPhone Developer" | (string & {});
1417+
CODE_SIGN_IDENTITY?: "iPhone Developer" | (string & {});
14241418

14251419
/** Automatically inject entitlements from the platform's BaseEntitlements.plist. */
14261420
CODE_SIGN_INJECT_BASE_ENTITLEMENTS?: BoolString;

0 commit comments

Comments
 (0)