plistsupported
Plistsupported refers to a capability in Apple's property list (plist) system, specifically a key used in an application's Info.plist to declare which platforms the bundle is intended to support. The Info.plist file stores metadata about a macOS, iOS, watchOS, or tvOS app, and plistsupported is commonly implemented via the CFBundleSupportedPlatforms key.
Background: A plist is a structured configuration file used across Apple platforms. Info.plist contains various keys
Details: The CFBundleSupportedPlatforms value is an array of strings, each representing a platform identifier. Typical values
Impact: The presence and content of CFBundleSupportedPlatforms can influence app validation, compatibility checks, and installation decisions
Editing and examples: The key is edited within the Info.plist file, using a plist editor in Xcode
CFBundleSupportedPlatforms = (
);
See also: Property list, Info.plist, CFBundleIdentifier, CFBundleName, platform identifiers.