Skip to content

Commit 1d4a79c

Browse files
committed
update camerax to fix a initialization failure
1 parent 6d0bc0a commit 1d4a79c

File tree

3 files changed

+12
-7
lines changed

3 files changed

+12
-7
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
# Changelog
22
All notable changes to this project will be documented in this file.
33

4+
## [0.34.3]
5+
6+
### Fixed
7+
- Update CameraX to 1.0.0-rc04 to fix a camera initialization crash on Samsung Galaxy S20 Ultra 5G
8+
49
## [0.34.2]
510

611
### Fixed

ui-integration/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,9 +50,9 @@ dependencies {
5050
implementation project(':ui')
5151
implementation project(':utils')
5252

53-
implementation 'androidx.fragment:fragment:1.2.5'
53+
implementation 'androidx.fragment:fragment:1.3.2'
5454
implementation 'androidx.appcompat:appcompat:1.2.0'
55-
implementation 'com.google.android.material:material:1.2.1'
55+
implementation 'com.google.android.material:material:1.3.0'
5656

5757
testImplementation 'junit:junit:4.13'
5858
androidTestImplementation 'androidx.test:runner:1.3.0'

ui/build.gradle

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -49,9 +49,9 @@ dependencies {
4949
implementation project(':utils')
5050
implementation project(':core')
5151

52-
implementation 'androidx.core:core:1.3.2'
52+
implementation 'androidx.core:core-ktx:1.3.2'
5353
implementation 'androidx.appcompat:appcompat:1.2.0'
54-
implementation 'androidx.recyclerview:recyclerview:1.2.0-beta02'
54+
implementation 'androidx.recyclerview:recyclerview:1.2.0'
5555
implementation 'androidx.cardview:cardview:1.0.0'
5656
implementation 'androidx.swiperefreshlayout:swiperefreshlayout:1.1.0'
5757
implementation 'androidx.webkit:webkit:1.4.0'
@@ -60,12 +60,12 @@ dependencies {
6060
implementation 'com.google.android:flexbox:2.0.1'
6161
implementation 'me.relex:circleindicator:2.1.4'
6262

63-
def camerax_version = "1.0.0-rc03"
63+
def camerax_version = "1.0.0-rc04"
6464
implementation "androidx.camera:camera-core:${camerax_version}"
6565
implementation "androidx.camera:camera-camera2:${camerax_version}"
6666
implementation "androidx.camera:camera-lifecycle:${camerax_version}"
67-
implementation "androidx.camera:camera-view:1.0.0-alpha22"
68-
implementation "androidx.camera:camera-extensions:1.0.0-alpha22"
67+
implementation "androidx.camera:camera-view:1.0.0-alpha23"
68+
implementation "androidx.camera:camera-extensions:1.0.0-alpha23"
6969

7070
//noinspection GradleDependency
7171
implementation 'commons-io:commons-io:2.5'

0 commit comments

Comments
 (0)