Skip to content
Open
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
11 changes: 11 additions & 0 deletions packages/camera/camera_android_camerax/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
## 0.7.4+8

* Bumps cameraxVersion from 1.6.1 to 1.6.2.
* Updates androidx.camera:camera-core from 1.6.1 to 1.6.2.
* Updates androidx.camera:camera-camera2 from 1.6.1 to 1.6.2.
* Updates androidx.camera:camera-lifecycle from 1.6.1 to 1.6.2.
* Updates androidx.camera:camera-video from 1.6.1 to 1.6.2.
* Removes the explicit `androidx.concurrent:concurrent-futures` dependency
workaround and its regression test, since camera-core 1.6.2 includes an
upstream fix that makes it unnecessary.

## 0.7.4+7

* Updates pigeon dev_dependency to ^27.3.2 for analyzer 14 compatibility.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -76,16 +76,12 @@ android {

dependencies {
// CameraX core library using the camera2 implementation must use same version number.
val cameraxVersion = "1.6.1"
val cameraxVersion = "1.6.2"
implementation("androidx.camera:camera-core:${cameraxVersion}")
implementation("androidx.camera:camera-camera2:${cameraxVersion}")
implementation("androidx.camera:camera-lifecycle:${cameraxVersion}")
implementation("androidx.camera:camera-video:${cameraxVersion}")
implementation("com.google.guava:guava:33.5.0-android")
// camera-core's compiled classes reference CallbackToFutureAdapter type annotations;
// without this explicit dependency, javac fails to resolve them during compilation.
// Upstream: https://issuetracker.google.com/issues/543937345
implementation("androidx.concurrent:concurrent-futures:1.2.0")
testImplementation("junit:junit:4.13.2")
testImplementation("org.mockito:mockito-core:5.23.0")
testImplementation("org.mockito:mockito-inline:5.2.0")
Expand Down

This file was deleted.

2 changes: 1 addition & 1 deletion packages/camera/camera_android_camerax/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: camera_android_camerax
description: Android implementation of the camera plugin using the CameraX library.
repository: https://github.com/flutter/packages/tree/main/packages/camera/camera_android_camerax
issue_tracker: https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+label%3A%22p%3A+camera%22
version: 0.7.4+7
version: 0.7.4+8

environment:
sdk: ^3.12.0
Expand Down
Loading