Skip to content

Commit

Permalink
Update Dependencies (#224)
Browse files Browse the repository at this point in the history
- Gradle 8.3
- AGP 8.1.2
- Compose BOM 2023.09.02
  • Loading branch information
vanshg authored Oct 2, 2023
1 parent f2adbbf commit 22bef96
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 7 deletions.
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

0 comments on commit 22bef96

Please sign in to comment.