Skip to content

Commit bfad6b9

Browse files
authored
[various] Updates packages to use flutter.compileSdkVersion (#8734)
- **Updates compileSdk 34 to flutter.compileSdkVersion.** Related to flutter/flutter/issues/149836 Want to wait a couple of days after #8700 lands before landing.
1 parent fc9d5ca commit bfad6b9

File tree

58 files changed

+142
-72
lines changed

Some content is hidden

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

58 files changed

+142
-72
lines changed

packages/camera/camera_android/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 0.10.10+1
2+
3+
* Updates compileSdk 34 to flutter.compileSdkVersion.
4+
15
## 0.10.10
26

37
* Adds API support query for image streaming.

packages/camera/camera_android/android/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ buildFeatures {
3131
buildConfig true
3232
}
3333
namespace 'io.flutter.plugins.camera'
34-
compileSdk 34
34+
compileSdk = flutter.compileSdkVersion
3535

3636
defaultConfig {
3737
minSdkVersion 21

packages/camera/camera_android/pubspec.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@ description: Android implementation of the camera plugin.
33
repository: https://github.com/flutter/packages/tree/main/packages/camera/camera_android
44
issue_tracker: https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+label%3A%22p%3A+camera%22
55

6-
version: 0.10.10
6+
version: 0.10.10+1
77

88
environment:
9-
sdk: ^3.5.0
10-
flutter: ">=3.24.0"
9+
sdk: ^3.6.0
10+
flutter: ">=3.27.0"
1111

1212
flutter:
1313
plugin:

packages/camera/camera_android_camerax/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 0.6.14+1
2+
3+
* Updates compileSdk 34 to flutter.compileSdkVersion.
4+
15
## 0.6.14
26

37
* Fixes incorrect camera preview rotation.

packages/camera/camera_android_camerax/android/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ apply plugin: 'com.android.library'
2424
android {
2525
namespace 'io.flutter.plugins.camerax'
2626
// CameraX dependencies require compilation against version 33 or later.
27-
compileSdk 34
27+
compileSdk = flutter.compileSdkVersion
2828

2929
compileOptions {
3030
sourceCompatibility JavaVersion.VERSION_11

packages/camera/camera_android_camerax/pubspec.yaml

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

77
environment:
88
sdk: ^3.6.0

packages/espresso/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 0.4.0+6
2+
3+
* Updates compileSdk 34 to flutter.compileSdkVersion.
4+
15
## 0.4.0+5
26

37
* Bumps com.squareup.okhttp3, com.google.code.gson, and com.google.truth.

packages/espresso/android/build.gradle

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

2424
android {
2525
namespace 'com.example.espresso'
26-
compileSdk 34
26+
compileSdk = flutter.compileSdkVersion
2727

2828
defaultConfig {
2929
minSdkVersion 19

packages/espresso/pubspec.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@ description: Java classes for testing Flutter apps using Espresso.
33
Allows driving Flutter widgets from a native Espresso test.
44
repository: https://github.com/flutter/packages/tree/main/packages/espresso
55
issue_tracker: https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+label%3A%22p%3A+espresso%22
6-
version: 0.4.0+5
6+
version: 0.4.0+6
77

88
environment:
9-
sdk: ^3.5.0
10-
flutter: ">=3.24.0"
9+
sdk: ^3.6.0
10+
flutter: ">=3.27.0"
1111

1212
flutter:
1313
plugin:

packages/file_selector/file_selector_android/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 0.5.1+13
2+
3+
* Updates compileSdk 34 to flutter.compileSdkVersion.
4+
15
## 0.5.1+12
26

37
* Fixes a security issue related to improperly trusting filenames provided by a `ContentProvider`.

0 commit comments

Comments
 (0)