Skip to content

Commit 7f6a87f

Browse files
authored
Merge pull request #876 from soramitsu/hot_fix/beacon
HOTFIX beacon
2 parents 75e39b5 + bbd1378 commit 7f6a87f

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
buildscript {
22
ext {
33
// App version
4-
versionName = '2.2.1'
5-
versionCode = 89
4+
versionName = '2.2.2'
5+
versionCode = 90
66

77
// SDK and tools
88
compileSdkVersion = 33
@@ -78,7 +78,7 @@ buildscript {
7878
activityKtx = '1.1.0'
7979
fragmentKtx = '1.5.2'
8080
minifyRelease = true
81-
beaconVersion = "3.2.3"
81+
beaconVersion = "3.2.4"
8282

8383
coilDep = "io.coil-kt:coil:$coilVersion"
8484
coilSvg = "io.coil-kt:coil-svg:$coilVersion"

feature-account-impl/src/main/java/jp/co/soramitsu/account/impl/presentation/experimental/ExperimentalFragment.kt

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -24,13 +24,13 @@ class ExperimentalFragment : BaseFragment<ExperimentalViewModel>(R.layout.fragme
2424

2525
override fun subscribe(viewModel: ExperimentalViewModel) {
2626
setBeaconVisibility(false)
27-
// viewModel.state.observeState<ExperimentalState> { state ->
28-
// setBeaconVisibility(state.beaconDapp != null)
29-
//
30-
// state.beaconDapp?.let {
31-
// binding.experimentsBeaconDapp.text = it.name
32-
// }
33-
// }
27+
viewModel.state.observeState<ExperimentalState> { state ->
28+
setBeaconVisibility(state.beaconDapp != null)
29+
30+
state.beaconDapp?.let {
31+
binding.experimentsBeaconDapp.text = it.name
32+
}
33+
}
3434

3535
viewModel.scanBeaconQrEvent.observeEvent {
3636
val integrator = IntentIntegrator.forSupportFragment(this).apply {

0 commit comments

Comments
 (0)