From 6112818c3cf3d10188924b52c0c785aa2f76a02d Mon Sep 17 00:00:00 2001 From: "daniel.roek" Date: Wed, 16 Dec 2020 14:14:29 +0100 Subject: [PATCH 1/3] updated README.md to notify about no < iOS10 support --- packages/camera/camera/README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/packages/camera/camera/README.md b/packages/camera/camera/README.md index 39d3ed88abea..a3e20e891d81 100644 --- a/packages/camera/camera/README.md +++ b/packages/camera/camera/README.md @@ -19,6 +19,8 @@ First, add `camera` as a [dependency in your pubspec.yaml file](https://flutter. ### iOS +iOS 10.0 of higher is needed to use the camera plugin. If compiling for any version lower than 10.0 make sure to check the iOS version with for example the [device_info plugin](https://pub.dev/packages/device_info) + Add two rows to the `ios/Runner/Info.plist`: * one with the key `Privacy - Camera Usage Description` and a usage description. From 11e3769375502d534c31280488b9427c22df7be2 Mon Sep 17 00:00:00 2001 From: "daniel.roek" Date: Wed, 16 Dec 2020 14:17:56 +0100 Subject: [PATCH 2/3] Version bump --- packages/camera/camera/CHANGELOG.md | 4 ++++ packages/camera/camera/pubspec.yaml | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/packages/camera/camera/CHANGELOG.md b/packages/camera/camera/CHANGELOG.md index cb8dfedd1d9a..8a7c979c3b72 100644 --- a/packages/camera/camera/CHANGELOG.md +++ b/packages/camera/camera/CHANGELOG.md @@ -1,3 +1,7 @@ +## 0.6.0+1 + +Updated README to inform users that iOS 10.0+ is needed for use + ## 0.6.0 As part of implementing federated architecture and making the interface compatible with the web this version contains the following **breaking changes**: diff --git a/packages/camera/camera/pubspec.yaml b/packages/camera/camera/pubspec.yaml index 64d5bba61159..cc25133f95f9 100644 --- a/packages/camera/camera/pubspec.yaml +++ b/packages/camera/camera/pubspec.yaml @@ -2,7 +2,7 @@ name: camera description: A Flutter plugin for getting information about and controlling the camera on Android and iOS. Supports previewing the camera feed, capturing images, capturing video, and streaming image buffers to dart. -version: 0.6.0 +version: 0.6.0+1 homepage: https://github.com/flutter/plugins/tree/master/packages/camera/camera dependencies: From 9ce16acbf3469748ae971b03ed9b53cca0b42a02 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dani=C3=ABl?= <32639467+danielroek@users.noreply.github.com> Date: Wed, 16 Dec 2020 15:58:53 +0100 Subject: [PATCH 3/3] Improved explanation Co-authored-by: Maurits van Beusekom --- packages/camera/camera/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/camera/camera/README.md b/packages/camera/camera/README.md index a3e20e891d81..f8a4b05211fd 100644 --- a/packages/camera/camera/README.md +++ b/packages/camera/camera/README.md @@ -19,7 +19,7 @@ First, add `camera` as a [dependency in your pubspec.yaml file](https://flutter. ### iOS -iOS 10.0 of higher is needed to use the camera plugin. If compiling for any version lower than 10.0 make sure to check the iOS version with for example the [device_info plugin](https://pub.dev/packages/device_info) +iOS 10.0 of higher is needed to use the camera plugin. If compiling for any version lower than 10.0 make sure to check the iOS version before using the camera plugin. For example, using the [device_info](https://pub.dev/packages/device_info) plugin. Add two rows to the `ios/Runner/Info.plist`: