Skip to content

Commit c463b83

Browse files
committed
chore: merge upstream/main and fix conflicts with #8227 and #8284
2 parents c9122f9 + 4ce4a21 commit c463b83

File tree

930 files changed

+38181
-29708
lines changed

Some content is hidden

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

930 files changed

+38181
-29708
lines changed

.ci.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ platform_properties:
3131
{"dependency": "android_sdk", "version": "version:33v6"},
3232
{"dependency": "open_jdk", "version": "version:17"},
3333
{"dependency": "curl", "version": "version:7.64.0"},
34-
{"dependency": "avd_cipd_version", "version": "build_id:8739520057779466577"}
34+
{"dependency": "avd_cipd_version", "version": "build_id:8733065022087935185"}
3535
]
3636
linux_android_legacy:
3737
properties:
@@ -44,7 +44,7 @@ platform_properties:
4444
{"dependency": "open_jdk", "version": "version:17"},
4545
{"dependency": "curl", "version": "version:7.64.0"},
4646
{"dependency": "android_virtual_device", "version": "generic_android22.textpb"},
47-
{"dependency": "avd_cipd_version", "version": "build_id:8739520057779466577"}
47+
{"dependency": "avd_cipd_version", "version": "build_id:8733065022087935185"}
4848
]
4949
linux_desktop:
5050
properties:
@@ -292,21 +292,21 @@ targets:
292292
timeout: 30
293293
properties:
294294
target_file: analyze_legacy.yaml
295-
channel: "3.22.3"
295+
channel: "3.24.5"
296296
env_variables: >-
297297
{
298-
"CHANNEL": "3.22.3"
298+
"CHANNEL": "3.24.5"
299299
}
300300
301301
- name: Linux analyze_legacy N-2
302302
recipe: packages/packages
303303
timeout: 30
304304
properties:
305305
target_file: analyze_legacy.yaml
306-
channel: "3.19.6"
306+
channel: "3.22.3"
307307
env_variables: >-
308308
{
309-
"CHANNEL": "3.19.6"
309+
"CHANNEL": "3.22.3"
310310
}
311311
312312
- name: Linux_android custom_package_tests master

.ci/flutter_master.version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0e2d55e0e7b2ebb8003ebb6519f43006f758b36f
1+
6966a2eef1e98fc326ea240525f1d42e0b4a4806

.ci/flutter_stable.version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
dec2ee5c1f98f8e84a7d5380c05eb8a3d0a81668
1+
8495dee1fd4aacbe9de707e7581203232f591b2f

.ci/targets/repo_checks.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ tasks:
2828
script: .ci/scripts/tool_runner.sh
2929
args:
3030
- "pubspec-check"
31-
- "--min-min-flutter-version=3.19.0"
31+
- "--min-min-flutter-version=3.22.0"
3232
- "--allow-dependencies=script/configs/allowed_unpinned_deps.yaml"
3333
- "--allow-pinned-dependencies=script/configs/allowed_pinned_deps.yaml"
3434
always: true

.github/dependabot.yml

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# See Dependabot documentation for all configuration options:
2-
# https://help.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
2+
# https://docs.github.com/en/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file
33

44
version: 2
55
updates:
@@ -66,9 +66,11 @@ updates:
6666
- /packages/webview_flutter/webview_flutter_android/example/android/app
6767
- /third_party/packages/flutter_svg/example/android/app
6868
commit-message:
69-
prefix: "[gradle]"
69+
prefix: "[dependabot]"
7070
schedule:
7171
interval: "weekly"
72+
labels:
73+
- "autosubmit"
7274
open-pull-requests-limit: 10
7375
ignore:
7476
- dependency-name: "*"
@@ -97,10 +99,12 @@ updates:
9799
- /packages/video_player/video_player_android/android
98100
- /packages/webview_flutter/webview_flutter_android/android
99101
commit-message:
100-
prefix: "[gradle]"
102+
prefix: "[dependabot]"
101103
schedule:
102104
interval: "weekly"
103105
open-pull-requests-limit: 10
106+
labels:
107+
- "autosubmit"
104108
ignore:
105109
- dependency-name: "com.android.tools.build:gradle"
106110
update-types: ["version-update:semver-minor", "version-update:semver-patch"]

.github/labeler.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,11 @@
8989
- any-glob-to-any-file:
9090
- packages/go_router_builder/**/*
9191

92+
'p: google_adsense':
93+
- changed-files:
94+
- any-glob-to-any-file:
95+
- packages/google_adsense/**
96+
9297
'p: google_identity_services':
9398
- changed-files:
9499
- any-glob-to-any-file:

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
# the change if it doesn't.
3232
run: |
3333
cd $HOME
34-
git clone https://github.com/flutter/flutter.git --depth 1 -b 3.24.0 _flutter
34+
git clone https://github.com/flutter/flutter.git --depth 1 -b 3.27.0 _flutter
3535
echo "$HOME/_flutter/bin" >> $GITHUB_PATH
3636
cd $GITHUB_WORKSPACE
3737
# Checks out a copy of the repo.

CODEOWNERS

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ packages/flutter_migrate/** @stuartmorgan
1818
packages/flutter_template_images/** @stuartmorgan
1919
packages/go_router/** @chunhtai
2020
packages/go_router_builder/** @chunhtai
21+
packages/google_adsense/** @sokoloff06 @ditman
2122
packages/google_identity_services_web/** @ditman
2223
packages/google_maps_flutter/** @stuartmorgan
2324
packages/google_sign_in/** @stuartmorgan

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,7 @@ These are the packages hosted in this repository:
5454
| [flutter\_template\_images](./packages/flutter_template_images/) | [![pub package](https://img.shields.io/pub/v/flutter_template_images.svg)](https://pub.dev/packages/flutter_template_images) | [![pub points](https://img.shields.io/pub/points/flutter_template_images)](https://pub.dev/packages/flutter_template_images/score) | [![popularity](https://img.shields.io/pub/popularity/flutter_template_images)](https://pub.dev/packages/flutter_template_images/score) | [![GitHub issues by-label](https://img.shields.io/github/issues/flutter/flutter/p%3A%20flutter_template_images?label=)](https://github.com/flutter/flutter/labels/p%3A%20flutter_template_images) | [![GitHub pull requests by-label](https://img.shields.io/github/issues-pr/flutter/packages/p%3A%20flutter_template_images?label=)](https://github.com/flutter/packages/labels/p%3A%20flutter_template_images) |
5555
| [go\_router](./packages/go_router/) | [![pub package](https://img.shields.io/pub/v/go_router.svg)](https://pub.dev/packages/go_router) | [![pub points](https://img.shields.io/pub/points/go_router)](https://pub.dev/packages/go_router/score) | [![popularity](https://img.shields.io/pub/popularity/go_router)](https://pub.dev/packages/go_router/score) | [![GitHub issues by-label](https://img.shields.io/github/issues/flutter/flutter/p%3A%20go_router?label=)](https://github.com/flutter/flutter/labels/p%3A%20go_router) | [![GitHub pull requests by-label](https://img.shields.io/github/issues-pr/flutter/packages/p%3A%20go_router?label=)](https://github.com/flutter/packages/labels/p%3A%20go_router) |
5656
| [go\_router\_builder](./packages/go_router_builder/) | [![pub package](https://img.shields.io/pub/v/go_router_builder.svg)](https://pub.dev/packages/go_router_builder) | [![pub points](https://img.shields.io/pub/points/go_router_builder)](https://pub.dev/packages/go_router_builder/score) | [![popularity](https://img.shields.io/pub/popularity/go_router_builder)](https://pub.dev/packages/go_router_builder/score) | [![GitHub issues by-label](https://img.shields.io/github/issues/flutter/flutter/p%3A%20go_router_builder?label=)](https://github.com/flutter/flutter/labels/p%3A%20go_router_builder) | [![GitHub pull requests by-label](https://img.shields.io/github/issues-pr/flutter/packages/p%3A%20go_router_builder?label=)](https://github.com/flutter/packages/labels/p%3A%20go_router_builder) |
57+
| [google\_adsense](./packages/google_adsense/)| [![pub package](https://img.shields.io/pub/v/google_adsense.svg)](https://pub.dev/packages/google_adsense) | [![pub points](https://img.shields.io/pub/points/google_adsense)](https://pub.dev/packages/google_adsense/score) | [![popularity](https://img.shields.io/pub/popularity/google_adsense)](https://pub.dev/packages/google_adsense/score) | [![GitHub issues by-label](https://img.shields.io/github/issues/flutter/flutter/p%3A%20google_adsense?label=)](https://github.com/flutter/flutter/labels/p%3A%20google_adsense) | [![GitHub pull requests by-label](https://img.shields.io/github/issues-pr/flutter/packages/p%3A%20google_adsense?label=)](https://github.com/flutter/packages/labels/p%3A%20google_adsense) |
5758
| [google\_maps\_flutter](./packages/google_maps_flutter/) | [![pub package](https://img.shields.io/pub/v/google_maps_flutter.svg)](https://pub.dev/packages/google_maps_flutter) | [![pub points](https://img.shields.io/pub/points/google_maps_flutter)](https://pub.dev/packages/google_maps_flutter/score) | [![popularity](https://img.shields.io/pub/popularity/google_maps_flutter)](https://pub.dev/packages/google_maps_flutter/score) | [![GitHub issues by-label](https://img.shields.io/github/issues/flutter/flutter/p%3A%20maps?label=)](https://github.com/flutter/flutter/labels/p%3A%20maps) | [![GitHub pull requests by-label](https://img.shields.io/github/issues-pr/flutter/packages/p%3A%20google_maps_flutter?label=)](https://github.com/flutter/packages/labels/p%3A%20google_maps_flutter) |
5859
| [google\_sign\_in](./packages/google_sign_in/) | [![pub package](https://img.shields.io/pub/v/google_sign_in.svg)](https://pub.dev/packages/google_sign_in) | [![pub points](https://img.shields.io/pub/points/google_sign_in)](https://pub.dev/packages/google_sign_in/score) | [![popularity](https://img.shields.io/pub/popularity/google_sign_in)](https://pub.dev/packages/google_sign_in/score) | [![GitHub issues by-label](https://img.shields.io/github/issues/flutter/flutter/p%3A%20google_sign_in?label=)](https://github.com/flutter/flutter/labels/p%3A%20google_sign_in) | [![GitHub pull requests by-label](https://img.shields.io/github/issues-pr/flutter/packages/p%3A%20google_sign_in?label=)](https://github.com/flutter/packages/labels/p%3A%20google_sign_in) |
5960
| [image\_picker](./packages/image_picker/) | [![pub package](https://img.shields.io/pub/v/image_picker.svg)](https://pub.dev/packages/image_picker) | [![pub points](https://img.shields.io/pub/points/image_picker)](https://pub.dev/packages/image_picker/score) | [![popularity](https://img.shields.io/pub/popularity/image_picker)](https://pub.dev/packages/image_picker/score) | [![GitHub issues by-label](https://img.shields.io/github/issues/flutter/flutter/p%3A%20image_picker?label=)](https://github.com/flutter/flutter/labels/p%3A%20image_picker) | [![GitHub pull requests by-label](https://img.shields.io/github/issues-pr/flutter/packages/p%3A%20image_picker?label=)](https://github.com/flutter/packages/labels/p%3A%20image_picker) |

packages/animations/CHANGELOG.md

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

3-
* Updates minimum supported SDK version to Flutter 3.19/Dart 3.3.
3+
* Updates minimum supported SDK version to Flutter 3.22/Dart 3.4.
44

55
## 2.0.11
66

packages/animations/example/ios/Runner/AppDelegate.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
import Flutter
66
import UIKit
77

8-
@UIApplicationMain
8+
@main
99
@objc class AppDelegate: FlutterAppDelegate {
1010
override func application(
1111
_ application: UIApplication,

packages/animations/example/pubspec.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ publish_to: none
66
version: 0.0.1
77

88
environment:
9-
sdk: ^3.3.0
10-
flutter: ">=3.19.0"
9+
sdk: ^3.4.0
10+
flutter: ">=3.22.0"
1111

1212
dependencies:
1313
animations:

packages/animations/pubspec.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ issue_tracker: https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+
55
version: 2.0.11
66

77
environment:
8-
sdk: ^3.3.0
9-
flutter: ">=3.19.0"
8+
sdk: ^3.4.0
9+
flutter: ">=3.22.0"
1010

1111
dependencies:
1212
flutter:

packages/camera/camera/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 minimum supported SDK version to Flutter 3.22/Dart 3.4.
4+
15
## 0.11.0+2
26

37
* Updates minimum supported SDK version to Flutter 3.19/Dart 3.3.

packages/camera/camera/example/ios/Runner.xcodeproj/project.pbxproj

Lines changed: 23 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
1498D2341E8E89220040F4C2 /* GeneratedPluginRegistrant.m in Sources */ = {isa = PBXBuildFile; fileRef = 1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */; };
1111
236906D1621AE863A5B2E770 /* libPods-Runner.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 89D82918721FABF772705DB0 /* libPods-Runner.a */; };
1212
3B3967161E833CAA004F5970 /* AppFrameworkInfo.plist in Resources */ = {isa = PBXBuildFile; fileRef = 3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */; };
13+
78A318202AECB46A00862997 /* FlutterGeneratedPluginSwiftPackage in Frameworks */ = {isa = PBXBuildFile; productRef = 78A3181F2AECB46A00862997 /* FlutterGeneratedPluginSwiftPackage */; };
1314
978B8F6F1D3862AE00F588F7 /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 7AFFD8EE1D35381100E5BB4D /* AppDelegate.m */; };
1415
97C146F31CF9000F007C117D /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 97C146F21CF9000F007C117D /* main.m */; };
1516
97C146FC1CF9000F007C117D /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FA1CF9000F007C117D /* Main.storyboard */; };
@@ -58,6 +59,7 @@
5859
isa = PBXFrameworksBuildPhase;
5960
buildActionMask = 2147483647;
6061
files = (
62+
78A318202AECB46A00862997 /* FlutterGeneratedPluginSwiftPackage in Frameworks */,
6163
236906D1621AE863A5B2E770 /* libPods-Runner.a in Frameworks */,
6264
);
6365
runOnlyForDeploymentPostprocessing = 0;
@@ -153,13 +155,15 @@
153155
97C146EC1CF9000F007C117D /* Resources */,
154156
9705A1C41CF9048500538489 /* Embed Frameworks */,
155157
3B06AD1E1E4923F5004D2608 /* Thin Binary */,
156-
8CEC7AD219FB134B511EBA9D /* [CP] Copy Pods Resources */,
157158
);
158159
buildRules = (
159160
);
160161
dependencies = (
161162
);
162163
name = Runner;
164+
packageProductDependencies = (
165+
78A3181F2AECB46A00862997 /* FlutterGeneratedPluginSwiftPackage */,
166+
);
163167
productName = Runner;
164168
productReference = 97C146EE1CF9000F007C117D /* Runner.app */;
165169
productType = "com.apple.product-type.application";
@@ -170,7 +174,7 @@
170174
97C146E61CF9000F007C117D /* Project object */ = {
171175
isa = PBXProject;
172176
attributes = {
173-
LastUpgradeCheck = 1430;
177+
LastUpgradeCheck = 1510;
174178
ORGANIZATIONNAME = "The Flutter Authors";
175179
TargetAttributes = {
176180
97C146ED1CF9000F007C117D = {
@@ -187,6 +191,9 @@
187191
Base,
188192
);
189193
mainGroup = 97C146E51CF9000F007C117D;
194+
packageReferences = (
195+
781AD8BC2B33823900A9FFBB /* XCLocalSwiftPackageReference "FlutterGeneratedPluginSwiftPackage" */,
196+
);
190197
productRefGroup = 97C146EF1CF9000F007C117D /* Products */;
191198
projectDirPath = "";
192199
projectRoot = "";
@@ -227,28 +234,6 @@
227234
shellPath = /bin/sh;
228235
shellScript = "/bin/sh \"$FLUTTER_ROOT/packages/flutter_tools/bin/xcode_backend.sh\" embed_and_thin";
229236
};
230-
8CEC7AD219FB134B511EBA9D /* [CP] Copy Pods Resources */ = {
231-
isa = PBXShellScriptBuildPhase;
232-
buildActionMask = 2147483647;
233-
files = (
234-
);
235-
inputPaths = (
236-
"${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-resources.sh",
237-
"${PODS_CONFIGURATION_BUILD_DIR}/camera_avfoundation/camera_avfoundation_privacy.bundle",
238-
"${PODS_CONFIGURATION_BUILD_DIR}/path_provider_foundation/path_provider_foundation_privacy.bundle",
239-
"${PODS_CONFIGURATION_BUILD_DIR}/video_player_avfoundation/video_player_avfoundation_privacy.bundle",
240-
);
241-
name = "[CP] Copy Pods Resources";
242-
outputPaths = (
243-
"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/camera_avfoundation_privacy.bundle",
244-
"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/path_provider_foundation_privacy.bundle",
245-
"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/video_player_avfoundation_privacy.bundle",
246-
);
247-
runOnlyForDeploymentPostprocessing = 0;
248-
shellPath = /bin/sh;
249-
shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-resources.sh\"\n";
250-
showEnvVarsInLog = 0;
251-
};
252237
9740EEB61CF901F6004384FC /* Run Script */ = {
253238
isa = PBXShellScriptBuildPhase;
254239
alwaysOutOfDate = 1;
@@ -499,6 +484,20 @@
499484
defaultConfigurationName = Release;
500485
};
501486
/* End XCConfigurationList section */
487+
488+
/* Begin XCLocalSwiftPackageReference section */
489+
781AD8BC2B33823900A9FFBB /* XCLocalSwiftPackageReference "FlutterGeneratedPluginSwiftPackage" */ = {
490+
isa = XCLocalSwiftPackageReference;
491+
relativePath = Flutter/ephemeral/Packages/FlutterGeneratedPluginSwiftPackage;
492+
};
493+
/* End XCLocalSwiftPackageReference section */
494+
495+
/* Begin XCSwiftPackageProductDependency section */
496+
78A3181F2AECB46A00862997 /* FlutterGeneratedPluginSwiftPackage */ = {
497+
isa = XCSwiftPackageProductDependency;
498+
productName = FlutterGeneratedPluginSwiftPackage;
499+
};
500+
/* End XCSwiftPackageProductDependency section */
502501
};
503502
rootObject = 97C146E61CF9000F007C117D /* Project object */;
504503
}

packages/camera/camera/example/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme

Lines changed: 20 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,28 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<Scheme
3-
LastUpgradeVersion = "1430"
3+
LastUpgradeVersion = "1510"
44
version = "1.3">
55
<BuildAction
66
parallelizeBuildables = "YES"
77
buildImplicitDependencies = "YES">
8+
<PreActions>
9+
<ExecutionAction
10+
ActionType = "Xcode.IDEStandardExecutionActionsCore.ExecutionActionType.ShellScriptAction">
11+
<ActionContent
12+
title = "Run Prepare Flutter Framework Script"
13+
scriptText = "/bin/sh &quot;$FLUTTER_ROOT/packages/flutter_tools/bin/xcode_backend.sh&quot; prepare&#10;">
14+
<EnvironmentBuildable>
15+
<BuildableReference
16+
BuildableIdentifier = "primary"
17+
BlueprintIdentifier = "97C146ED1CF9000F007C117D"
18+
BuildableName = "Runner.app"
19+
BlueprintName = "Runner"
20+
ReferencedContainer = "container:Runner.xcodeproj">
21+
</BuildableReference>
22+
</EnvironmentBuildable>
23+
</ActionContent>
24+
</ExecutionAction>
25+
</PreActions>
826
<BuildActionEntries>
927
<BuildActionEntry
1028
buildForTesting = "YES"
@@ -58,6 +76,7 @@
5876
ignoresPersistentStateOnLaunch = "NO"
5977
debugDocumentVersioning = "YES"
6078
debugServiceExtension = "internal"
79+
enableGPUValidationMode = "1"
6180
allowLocationSimulation = "YES">
6281
<BuildableProductRunnable
6382
runnableDebuggingMode = "0">

packages/camera/camera/example/pubspec.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ description: Demonstrates how to use the camera plugin.
33
publish_to: none
44

55
environment:
6-
sdk: ^3.3.0
7-
flutter: ">=3.19.0"
6+
sdk: ^3.4.0
7+
flutter: ">=3.22.0"
88

99
dependencies:
1010
camera:

packages/camera/camera/pubspec.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ issue_tracker: https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+
77
version: 0.11.0+2
88

99
environment:
10-
sdk: ^3.3.0
11-
flutter: ">=3.19.0"
10+
sdk: ^3.4.0
11+
flutter: ">=3.22.0"
1212

1313
flutter:
1414
plugin:

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.9+17
2+
3+
* Updates annotations lib to 1.9.1.
4+
15
## 0.10.9+16
26

37
* Updates annotations lib to 1.9.0.

packages/camera/camera_android/android/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ buildFeatures {
6666
}
6767

6868
dependencies {
69-
implementation 'androidx.annotation:annotation:1.9.0'
69+
implementation 'androidx.annotation:annotation:1.9.1'
7070
testImplementation 'junit:junit:4.13.2'
7171
testImplementation 'org.mockito:mockito-inline:5.0.0'
7272
testImplementation 'androidx.test:core:1.4.0'

packages/camera/camera_android/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ 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.9+16
6+
version: 0.10.9+17
77

88
environment:
99
sdk: ^3.5.0

packages/camera/camera_avfoundation/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 minimum supported SDK version to Flutter 3.22/Dart 3.4.
4+
15
## 0.9.17+5
26

37
* Adds ability to use any supported FPS and fixes crash when using unsupported FPS.

0 commit comments

Comments
 (0)