Stefan Oltmann
04/29/2025, 2:21 PMephemient
04/29/2025, 2:31 PMStefan Oltmann
04/29/2025, 2:38 PMephemient
04/29/2025, 2:46 PMThomas
04/29/2025, 3:12 PMStefan Oltmann
04/29/2025, 3:12 PMStefan Oltmann
04/29/2025, 3:13 PMThomas
04/29/2025, 3:14 PMThomas
04/29/2025, 3:15 PMextraKeysRawXml
. You need to add some stuff. Create a brand new (empty) xcode project, build it, and check the generated Info.plist in the app package. Add these values to your compose app (these are normally missing).Thomas
04/29/2025, 3:16 PM// Workaround for external testing on TestFlight: <https://forum.unity.com/threads/testflight-external-build-says-app-is-using-beta-version-of-xcode.1214448/#post-7885261>
// Grab the values by building an Xcode project and inspecting the generated Info.plist in the app package
appendLine(" <key>BuildMachineOSBuild</key>")
appendLine(" <string>22C65</string>")
appendLine(" <key>DTCompiler</key>")
appendLine(" <string>com.apple.compilers.llvm.clang.1_0</string>")
appendLine(" <key>DTPlatformBuild</key>")
appendLine(" <string>14C18</string>")
appendLine(" <key>DTPlatformName</key>")
appendLine(" <string>macosx</string>")
appendLine(" <key>DTPlatformVersion</key>")
appendLine(" <string>13.1</string>")
appendLine(" <key>DTSDKBuild</key>")
appendLine(" <string>22C55</string>")
appendLine(" <key>DTSDKName</key>")
appendLine(" <string>macosx13.1</string>")
appendLine(" <key>DTXcode</key>")
appendLine(" <string>1420</string>")
appendLine(" <key>DTXcodeBuild</key>")
appendLine(" <string>14C18</string>")
Thomas
04/29/2025, 3:16 PMStefan Oltmann
04/29/2025, 3:16 PMThomas
04/29/2025, 3:17 PMMarco Gomiero
05/02/2025, 3:33 PM