Skip to content

Commit

Permalink
bump hotfix release
Browse files Browse the repository at this point in the history
  • Loading branch information
ktiniatros committed Jan 23, 2023
1 parent 2cc7a50 commit 18060cf
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion holder/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ def appVersionCode = 1000000
if (System.getenv("GITHUB_REPOSITORY_OWNER") == "minvws") {
appVersionCode = System.getenv("VERSION_NUMBER") != null ? System.getenv("VERSION_NUMBER").toInteger() : 1000000
}
version = "4.10"
version = "4.10.1"
archivesBaseName = "holder-v${version}-${appVersionCode}"

android {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,11 @@ fun fakeCredentialEntity(

fun fakeAppConfigViewModel(appStatus: AppStatus = AppStatus.NoActionRequired) =
object : AppConfigViewModel() {
override fun refresh(mobileCoreWrapper: MobileCoreWrapper, force: Boolean) {
override fun refresh(
mobileCoreWrapper: MobileCoreWrapper,
force: Boolean,
afterRefresh: () -> Unit
) {
appStatusLiveData.value = appStatus
}

Expand Down

0 comments on commit 18060cf

Please sign in to comment.