Skip to content
This repository was archived by the owner on Feb 22, 2023. It is now read-only.

Commit 16fa1ed

Browse files
Update some plugins targetSdkVersions to 31 (#4535)
Precursor to #4533 On master channel, plugin unit tests must now build with SDK version 31. These plugins are transitive dependencies of other plugins' examples, which causes unit test failures in those plugins's unit test builds, so these need to be landed and publish in order for that PR to pass presubmit.
1 parent 7f9badd commit 16fa1ed

File tree

10 files changed

+17
-9
lines changed

10 files changed

+17
-9
lines changed

packages/flutter_plugin_android_lifecycle/CHANGELOG.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
## NEXT
1+
## 2.0.5
22

3-
* Updates example app Android compileSdkVersion to 31.
3+
* Updates compileSdkVersion to 31.
44

55
## 2.0.4
66

packages/flutter_plugin_android_lifecycle/android/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ rootProject.allprojects {
2222
apply plugin: 'com.android.library'
2323

2424
android {
25-
compileSdkVersion 29
25+
compileSdkVersion 31
2626

2727
defaultConfig {
2828
minSdkVersion 16

packages/flutter_plugin_android_lifecycle/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: flutter_plugin_android_lifecycle
22
description: Flutter plugin for accessing an Android Lifecycle within other plugins.
33
repository: https://github.com/flutter/plugins/tree/master/packages/flutter_plugin_android_lifecycle
44
issue_tracker: https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+label%3A%22p%3A+flutter_plugin_android_lifecycle%22
5-
version: 2.0.4
5+
version: 2.0.5
66

77
environment:
88
sdk: ">=2.12.0 <3.0.0"

packages/path_provider/path_provider_android/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 2.0.9
2+
3+
* Updates Android compileSdkVersion to 31.
4+
15
## 2.0.8
26

37
* Updates example app Android compileSdkVersion to 31.

packages/path_provider/path_provider_android/android/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ rootProject.allprojects {
2222
apply plugin: 'com.android.library'
2323

2424
android {
25-
compileSdkVersion 29
25+
compileSdkVersion 31
2626

2727
defaultConfig {
2828
minSdkVersion 16

packages/path_provider/path_provider_android/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: path_provider_android
22
description: Android implementation of the path_provider plugin.
33
repository: https://github.com/flutter/plugins/tree/master/packages/path_provider/path_provider_android
44
issue_tracker: https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+label%3A%22p%3A+path_provider%22
5-
version: 2.0.8
5+
version: 2.0.9
66

77
environment:
88
sdk: ">=2.14.0 <3.0.0"
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 2.0.9
2+
3+
* Updates compileSdkVersion to 31.
4+
15
## 2.0.8
26

37
* Split from `shared_preferences` as a federated implementation.

packages/shared_preferences/shared_preferences_android/android/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ allprojects {
3030
apply plugin: 'com.android.library'
3131

3232
android {
33-
compileSdkVersion 29
33+
compileSdkVersion 31
3434

3535
defaultConfig {
3636
minSdkVersion 16

packages/shared_preferences/shared_preferences_android/example/android/app/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ apply plugin: 'kotlin-android'
2626
apply from: "$flutterRoot/packages/flutter_tools/gradle/flutter.gradle"
2727

2828
android {
29-
compileSdkVersion 30
29+
compileSdkVersion 31
3030

3131
sourceSets {
3232
main.java.srcDirs += 'src/main/kotlin'

packages/shared_preferences/shared_preferences_android/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: shared_preferences_android
22
description: Android implementation of the shared_preferences plugin
33
repository: https://github.com/flutter/plugins/tree/master/packages/shared_preferences/shared_preferences_android
44
issue_tracker: https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+label%3A%22p%3A+shared_preferences%22
5-
version: 2.0.8
5+
version: 2.0.9
66

77
environment:
88
sdk: ">=2.14.0 <3.0.0"

0 commit comments

Comments
 (0)