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
using AVFoundation;
...
using var device = AVCaptureDevice.GetDefaultDevice(AVMediaTypes.Video);
var maxSize = device.ActiveFormat.HighResolutionStillImageDimensions;
Steps to Reproduce
HighResolutionStillImageDimensions is deprecated since iOS 8:
https://developer.apple.com/documentation/avfoundation/avcapturedevice/format/1624620-highresolutionstillimagedimensio
Its replacement is not bound in Xamarin:
https://developer.apple.com/documentation/avfoundation/avcapturedeviceformat/3950866-supportedmaxphotodimensions
I've searched this repo and found a "not bound" annotation in some kind of log files for supportedmaxphotodimensions.
Is there a way to bind it manually ?
Expected Behavior
the property supportedmaxphotodimensions should exist
Actual Behavior
It does not.
Environment
Xamarin iOS SDK stable
The text was updated successfully, but these errors were encountered: