This repository was archived by the owner on Feb 22, 2023. It is now read-only.
File tree 3 files changed +9
-7
lines changed
3 files changed +9
-7
lines changed Original file line number Diff line number Diff line change
1
+ ## 0.9.3+1
2
+
3
+ * Remove iOS 9 availability check around ultra high capture sessions.
4
+
1
5
## 0.9.3
2
6
3
7
* Update minimum Flutter SDK to 2.5 and iOS deployment target to 9.0.
Original file line number Diff line number Diff line change @@ -532,12 +532,10 @@ - (void)setCaptureSessionPreset:(ResolutionPreset)resolutionPreset {
532
532
switch (resolutionPreset) {
533
533
case max:
534
534
case ultraHigh:
535
- if (@available (iOS 9.0 , *)) {
536
- if ([_captureSession canSetSessionPreset: AVCaptureSessionPreset3840x2160]) {
537
- _captureSession.sessionPreset = AVCaptureSessionPreset3840x2160;
538
- _previewSize = CGSizeMake (3840 , 2160 );
539
- break ;
540
- }
535
+ if ([_captureSession canSetSessionPreset: AVCaptureSessionPreset3840x2160]) {
536
+ _captureSession.sessionPreset = AVCaptureSessionPreset3840x2160;
537
+ _previewSize = CGSizeMake (3840 , 2160 );
538
+ break ;
541
539
}
542
540
if ([_captureSession canSetSessionPreset: AVCaptureSessionPresetHigh]) {
543
541
_captureSession.sessionPreset = AVCaptureSessionPresetHigh;
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ description: A Flutter plugin for getting information about and controlling the
4
4
and streaming image buffers to dart.
5
5
repository : https://github.com/flutter/plugins/tree/master/packages/camera/camera
6
6
issue_tracker : https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+label%3A%22p%3A+camera%22
7
- version : 0.9.3
7
+ version : 0.9.3+1
8
8
9
9
environment :
10
10
sdk : " >=2.14.0 <3.0.0"
You can’t perform that action at this time.
0 commit comments