Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update Dependencies #224

Merged
merged 1 commit into from
Oct 2, 2023
Merged
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
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,9 @@
### Changed
- Show the normal consent screen as part of BVN Verification
- The parameters of BvnConsentScreen have been updated to support inclusion of the consent screen
- Bump Compose BOM to 2023.09.02
- Bump AGP to 8.1.2
- Bump Sentry to 6.30.0

### Removed

Expand Down
6 changes: 3 additions & 3 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
[versions]
accompanist-permissions = "0.32.0"
android-gradle-plugin = "8.1.1"
android-gradle-plugin = "8.1.2"
androidx-activity = "1.7.2"
# TODO: Check if https://android-review.googlesource.com/c/platform/frameworks/support/+/2576871 has
# been merged and if so, swap the buttons in ImageCaptureConfirmationDialog
androidx-compose-bom = "2023.09.01"
androidx-compose-bom = "2023.09.02"
androidx-compose-compiler = "1.5.3"
androidx-core = "1.12.0"
androidx-fragment = "1.6.1"
androidx-lifecycle = "2.6.2"
androidx-navigation = "2.7.2"
androidx-navigation = "2.7.3"
androidx-test-core = "1.5.0"
androidx-test-espresso = "3.5.1"
androidx-test-fragment = "1.6.1"
Expand Down
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.2.1-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.3-bin.zip
networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -127,9 +127,7 @@ internal fun DocumentCaptureScreen(
Timber.v("onInstructionsAcknowledgedSelectFromGallery")
photoPickerLauncher.launch(PickVisualMediaRequest(ImageOnly))
},
onInstructionsAcknowledgedTakePhoto = {
viewModel.onInstructionsAcknowledged()
},
onInstructionsAcknowledgedTakePhoto = viewModel::onInstructionsAcknowledged,
onSkip = onSkip,
)
}
Expand Down