Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[path_provider] fix 151823: update minimum required path_provider_android to 2.2.0 #7181

Merged
merged 4 commits into from
Jul 30, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion packages/path_provider/path_provider/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
## NEXT
## 2.1.4

* Updates minimum required `path_provider_android` to 2.2.0 to ensure support for `getDownloadsDirectory()` on Android.
* Updates supported platforms and paths matrix to indicate that downloads
are supported on Android.
* Updates minimum supported SDK version to Flutter 3.16/Dart 3.2.

## 2.1.3
Expand Down
2 changes: 1 addition & 1 deletion packages/path_provider/path_provider/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ Directories support by platform:
| External Storage | ✔️ | ❌ | ❌ | ❌️ | ❌️ |
| External Cache Directories | ✔️ | ❌ | ❌ | ❌️ | ❌️ |
| External Storage Directories | ✔️ | ❌ | ❌ | ❌️ | ❌️ |
| Downloads | | ✔️ | ✔️ | ✔️ | ✔️ |
| Downloads | ✔️ | ✔️ | ✔️ | ✔️ | ✔️ |

## Testing

Expand Down
4 changes: 2 additions & 2 deletions packages/path_provider/path_provider/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: path_provider
description: Flutter plugin for getting commonly used locations on host platform file systems, such as the temp and app data directories.
repository: https://github.com/flutter/packages/tree/main/packages/path_provider/path_provider
issue_tracker: https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+label%3A%22p%3A+path_provider%22
version: 2.1.3
version: 2.1.4

environment:
sdk: ^3.2.0
Expand All @@ -25,7 +25,7 @@ flutter:
dependencies:
flutter:
sdk: flutter
path_provider_android: ^2.1.0
path_provider_android: ^2.2.0
path_provider_foundation: ^2.3.2
path_provider_linux: ^2.2.0
path_provider_platform_interface: ^2.1.0
Expand Down