Skip to content

Commit 8168d9c

Browse files
[various] Update READMEs to reflect current OS support (#10470)
* Updates all READMEs to list the OS versions currently supported by the latest platform implementations. * This is not necessarily the same as the OS version that the current version of the app-facing platform supports; for plugins where the app-facing package still supports Flutter 3.32, clients using Flutter 3.32 will get older versions of the platform implementations that are still compatible with iOS 12/Android API 21-23. However, the Flutter team no longer actively supports those versions, which is what we are choosing to reflect in READMEs. (In the future, we may want to move this information to platform implementation package READMEs, although that will make it harder to skim.) * Updates all Android plugins that still listed a `minSdkVersion` of 21 to 24. * This is a no-op for clients; all of these implementation packages already require Flutter 3.35, which can only build for 24+. * This part is the Android version of #10231, but no SDK changes were needed here. All the changes where we could make code changes were already done in #9851. Fixes flutter/flutter#178757 ## Pre-Review Checklist [^1]: Regular contributors who have demonstrated familiarity with the repository guidelines only need to comment if the PR is not auto-exempted by repo tooling.
1 parent ae96e58 commit 8168d9c

File tree

45 files changed

+98
-46
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

45 files changed

+98
-46
lines changed

packages/camera/camera/CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
## NEXT
22

3-
* Updates minimum supported SDK version to Flutter 3.32/Dart 3.8.
3+
* Updates README to reflect currently supported OS versions for the latest
4+
versions of the endorsed platform implementations.
5+
* Applications built with older versions of Flutter will continue to
6+
use compatible versions of the platform implementations.
47

58
## 0.11.3
69

packages/camera/camera/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ A Flutter plugin for iOS, Android and Web allowing access to the device cameras.
88

99
| | Android | iOS | Web |
1010
|----------------|---------|-----------|------------------------|
11-
| **Support** | SDK 24+ | iOS 12.0+ | [See `camera_web `][1] |
11+
| **Support** | SDK 24+ | iOS 13.0+ | [See `camera_web `][1] |
1212

1313
## Features
1414

packages/espresso/CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,13 @@
1+
## NEXT
2+
3+
* Updates README to reflect currently supported OS version.
4+
15
## 0.4.0+20
26

37
* Bumps com.android.tools.build:gradle from 8.12.1 to 8.13.1.
48

59
## 0.4.0+19
610

7-
* Updates minimum supported SDK version to Flutter 3.32/Dart 3.8.
811
* Bumps `com.squareup.okhttp3:okhttp` from 5.3.0 to 5.3.1.
912

1013
## 0.4.0+18

packages/espresso/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Provides bindings for Espresso tests of Flutter Android apps.
44

55
| | Android |
66
|-------------|---------|
7-
| **Support** | SDK 21+ |
7+
| **Support** | SDK 24+ |
88

99
## Installation
1010

packages/espresso/android/build.gradle

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ android {
2626
compileSdk = flutter.compileSdkVersion
2727

2828
defaultConfig {
29-
minSdkVersion 21
29+
minSdkVersion 24
3030
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
3131
}
3232

@@ -92,5 +92,3 @@ dependencies {
9292
// classpath.
9393
api("androidx.test.espresso:espresso-idling-resource:3.7.0")
9494
}
95-
96-

packages/file_selector/file_selector/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
* Adds `canCreateDirectories` param to `getSaveLocation`, `getDirectoryPath` and `getDirectoryPaths` to control whether users can create directories during location selection.
44
* Updates minimum supported SDK version to Flutter 3.32/Dart 3.8.
5+
* Updates README to reflect currently supported OS versions for the latest
6+
versions of the endorsed platform implementations.
7+
* Applications built with older versions of Flutter will continue to
8+
use compatible versions of the platform implementations.
59

610
## 1.0.4
711

packages/file_selector/file_selector/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ A Flutter plugin that manages files and interactions with file dialogs.
88

99
| | Android | iOS | Linux | macOS | Web | Windows |
1010
|-------------|---------|---------|-------|--------|-----|-------------|
11-
| **Support** | SDK 21+ | iOS 12+ | Any | 10.14+ | Any | Windows 10+ |
11+
| **Support** | SDK 24+ | iOS 13+ | Any | 10.15+ | Any | Windows 10+ |
1212

1313
## Setup
1414

packages/file_selector/file_selector_android/android/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ android {
3131
}
3232

3333
defaultConfig {
34-
minSdkVersion 21
34+
minSdkVersion 24
3535
}
3636

3737
dependencies {

packages/flutter_plugin_android_lifecycle/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## NEXT
2+
3+
* Updates README to reflect currently supported OS version.
4+
15
## 2.0.33
26

37
* Bumps com.android.tools.build:gradle from 8.12.1 to 8.13.1.

packages/flutter_plugin_android_lifecycle/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ major version of the Android `Lifecycle` API they expect.
1111

1212
| | Android |
1313
|-------------|---------|
14-
| **Support** | SDK 21+ |
14+
| **Support** | SDK 24+ |
1515

1616
## Example
1717

0 commit comments

Comments
 (0)