Skip to content

Commit

Permalink
release soralution v.3.7.0.1 117
Browse files Browse the repository at this point in the history
  • Loading branch information
arvifox committed Oct 28, 2023
1 parent cbf0d0b commit 8b8242a
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 8 deletions.
2 changes: 1 addition & 1 deletion app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ play {
serviceAccountCredentials = file(System.env.CI_PLAY_KEY ?: "../key/fake.json")
track = "internal"
releaseStatus = ReleaseStatus.DRAFT
releaseName = "3.7.0.0 - SORA Card improvements"
releaseName = "3.7.0.1 - Improvements on SORA Card Hub"
}

dependencies {
Expand Down
8 changes: 4 additions & 4 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ buildscript {
composeCompiler : '1.5.3',
composeConstraintLayout: '1.1.0-alpha05',
uiCore : '0.2.12',
soraCard : '0.1.63',
soraCard : '0.1.64',
lazySodium : '5.0.2',
jna : '5.8.0',
xserializationjson : '1.5.1',
Expand All @@ -55,11 +55,11 @@ buildscript {
]

ext {
// soralution 116 3.7.0.0 2023.10.26
// soralution 117 3.7.0.1 2023.10.28
// sora dae 98 3.3.0.0 2023.08.18
// appVersionCode = Integer.valueOf(System.env.BUILD_NUMBER ?: 96)
appVersionCode = Integer.valueOf(System.env.CI_BUILD_ID ?: 116)
appVersionName = '3.7.0.0'
appVersionCode = Integer.valueOf(System.env.CI_BUILD_ID ?: 117)
appVersionName = '3.7.0.1'

compileVersion = 34
minVersion = 24
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -140,14 +140,16 @@ class SoraCardDetailsViewModel @Inject constructor(

fun onIbanCardShareClick() {
ibanCache?.let {
_shareLinkEvent.value = it
if (it.isNotEmpty()) _shareLinkEvent.value = it
}
}

fun onIbanCardClick() {
ibanCache?.let {
clipboardManager.addToClipboard(it)
copiedToast.trigger()
if (it.isNotEmpty()) {
clipboardManager.addToClipboard(it)
copiedToast.trigger()
}
}
}

Expand Down

0 comments on commit 8b8242a

Please sign in to comment.