Skip to content

Commit 845ef05

Browse files
committed
Update types.ts
1 parent cdae3cf commit 845ef05

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

src/json/types.ts

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1170,7 +1170,12 @@ export interface BuildSettings {
11701170
// Modern SwiftUI multiplatform app settings
11711171
/** Enable App Sandbox for macOS apps. */
11721172
ENABLE_APP_SANDBOX?: BoolString;
1173-
/** Register app groups capability. */
1173+
/**
1174+
* Register app groups capability. Required for extensions to access
1175+
* app group containers. Should be `YES` for any target using App Groups.
1176+
* Without this, extensions may silently fail to access shared containers.
1177+
* @see https://developer.apple.com/documentation/Xcode/configuring-app-groups
1178+
*/
11741179
REGISTER_APP_GROUPS?: BoolString;
11751180
/** Enable user-selected files access. @example `"readonly"` */
11761181
ENABLE_USER_SELECTED_FILES?: "readonly" | "readwrite" | (string & {});

0 commit comments

Comments
 (0)