-
Notifications
You must be signed in to change notification settings - Fork 9.8k
[ios_platform_images] Update minimum version to iOS 11 #6874
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,7 @@ | ||
## 0.2.2 | ||
|
||
* Updates minimum version to iOS 11. | ||
|
||
## 0.2.1+1 | ||
|
||
* Add lint ignore comments | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,7 +17,7 @@ Downloaded by pub (not CocoaPods). | |
s.documentation_url = 'https://pub.dev/packages/ios_platform_images' | ||
s.source_files = 'Classes/**/*' | ||
s.dependency 'Flutter' | ||
s.platform = :ios, '9.0' | ||
s.platform = :ios, '11.0' | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This was manually edited. |
||
|
||
# Flutter.framework does not contain a i386 slice. Only x86_64 simulators are supported. | ||
s.pod_target_xcconfig = { 'DEFINES_MODULE' => 'YES' } | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,10 +2,10 @@ name: ios_platform_images | |
description: A plugin to share images between Flutter and iOS in add-to-app setups. | ||
repository: https://github.com/flutter/plugins/tree/main/packages/ios_platform_images | ||
issue_tracker: https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+label%3A%22p%3A+ios_platform_images%22 | ||
version: 0.2.1+1 | ||
version: 0.2.2 | ||
|
||
environment: | ||
sdk: ">=2.14.0 <3.0.0" | ||
sdk: '>=2.18.0 <3.0.0' | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This should have been bumped with 0.2.1 when updated to 3.3. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. We don't generally bother to keep them in sync. I've thought about having tooling enforce expected pairs, but I haven't come up with any benefit from doing so. So the current approach is that we mostly only update each one when there is a specific reason for that constraint. Usually it's just the Flutter constraint, but things like NNBD or new Dart features trigger an |
||
flutter: ">=3.3.0" | ||
|
||
flutter: | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The README needs an update too. We haven't built out tooling to enforce that it matches reality yet (flutter/flutter#84200).