You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Has anyone seen this error before or know the root cause please?
The best match /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/DeviceSupport/11.0/DeveloperDiskImage.dmg: 11.0 is not suitable for 0.0
I'm using an iphone 6s iOS 15.7 device to launch a test application. A few other devices do appear to work though which are nearly identical ie the model and iOS version.
return [[FBControlCoreError
describeFormat:@"The best match %@ is not suitable for %ld.%ld", best, targetVersion.majorVersion, targetVersion.minorVersion]
fail:error];
Because the target version appears to be read as 0.0. I can't see where / how it's reading this as 0.0
Many thanks
The text was updated successfully, but these errors were encountered:
Yes, we are plagued by this! It is often caused by not having the correct disk image due to not having xCode up to date, but we also see this when we have a large number of physical devices connected. Did you solve your problem?
Hi
Has anyone seen this error before or know the root cause please?
The best match /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/DeviceSupport/11.0/DeveloperDiskImage.dmg: 11.0 is not suitable for 0.0
I'm using an iphone 6s iOS 15.7 device to launch a test application. A few other devices do appear to work though which are nearly identical ie the model and iOS version.
From
https://github.com/facebook/idb/blob/31b6ed0a8c831043601342f0ecbd9ce7b0858594/FBControlCore/Utility/FBDeveloperDiskImage.m
We see this message output
return [[FBControlCoreError
describeFormat:@"The best match %@ is not suitable for %ld.%ld", best, targetVersion.majorVersion, targetVersion.minorVersion]
fail:error];
Because the target version appears to be read as 0.0. I can't see where / how it's reading this as 0.0
Many thanks
The text was updated successfully, but these errors were encountered: