From 213df23b3d165626408f1622ebaedb09838cdab5 Mon Sep 17 00:00:00 2001 From: Riley Baker Date: Wed, 22 Oct 2025 19:28:00 -0400 Subject: [PATCH] Add UIDeviceFamily on iOS --- Sources/SwiftBundler/Bundler/PlistCreator.swift | 1 + 1 file changed, 1 insertion(+) diff --git a/Sources/SwiftBundler/Bundler/PlistCreator.swift b/Sources/SwiftBundler/Bundler/PlistCreator.swift index f7583c7..e00c8fb 100644 --- a/Sources/SwiftBundler/Bundler/PlistCreator.swift +++ b/Sources/SwiftBundler/Bundler/PlistCreator.swift @@ -108,6 +108,7 @@ enum PlistCreator { entries["MinimumOSVersion"] = platformVersion entries["CFBundleSupportedPlatforms"] = ["iPhoneOS"] entries["UILaunchScreen"] = [String: Any]() + entries["UIDeviceFamily"] = [1, 2] case .tvOS, .tvOSSimulator: entries["MinimumOSVersion"] = platformVersion entries["CFBundleSupportedPlatforms"] = ["AppleTVOS"]