Skip to content

Commit 085fb0a

Browse files
authored
release_2.0.3 (#495)
* 1670 fix Continue button doesn't react while Staking * CI publish settings change * version up 2.0.3(55)
1 parent 025394c commit 085fb0a

File tree

3 files changed

+9
-7
lines changed

3 files changed

+9
-7
lines changed

app/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,8 +72,8 @@ android {
7272

7373
play {
7474
serviceAccountCredentials = file(System.env.CI_PLAY_KEY ?: "../key/fake.json")
75-
track = "beta"
76-
releaseStatus = ReleaseStatus.COMPLETED
75+
track = "production"
76+
releaseStatus = ReleaseStatus.DRAFT
7777
}
7878

7979
dependencies {

build.gradle

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
buildscript {
22
ext {
33
// App version
4-
versionName = '2.0.2'
5-
versionCode = 54
4+
versionName = '2.0.3'
5+
versionCode = 55
66

77
// SDK and tools
88
compileSdkVersion = 31
@@ -186,7 +186,7 @@ dependencies {
186186
task ktlint(type: JavaExec, group: "verification") {
187187
description = "Check Kotlin code style."
188188
classpath = configurations.ktlint
189-
main = "com.pinterest.ktlint.Main"
189+
mainClass.set("com.pinterest.ktlint.Main")
190190
args "--reporter=plain"
191191
args "--android"
192192
args "--reporter=checkstyle,output=${project.buildDir}/reports/checkstyle/ktlint.xml"
@@ -196,7 +196,7 @@ task ktlint(type: JavaExec, group: "verification") {
196196
task ktlintFormat(type: JavaExec, group: "formatting") {
197197
description = "Fix Kotlin code style deviations."
198198
classpath = configurations.ktlint
199-
main = "com.pinterest.ktlint.Main"
199+
mainClass.set("com.pinterest.ktlint.Main")
200200
args "-F", "$project.rootDir/**/src/main/**/*.kt"
201201
args "--android"
202202
}

feature-staking-impl/src/main/java/jp/co/soramitsu/feature_staking_impl/presentation/common/rewardDestination/RewardDestinationProvider.kt

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,9 @@ class RewardDestinationProvider(
4242
override val rewardReturnsLiveData = MutableLiveData<RewardDestinationEstimations>()
4343
override val showDestinationChooserEvent = MutableLiveData<Event<DynamicListBottomSheet.Payload<AddressModel>>>()
4444

45-
override val rewardDestinationModelFlow = MutableSharedFlow<RewardDestinationModel>(replay = 1, onBufferOverflow = BufferOverflow.DROP_OLDEST)
45+
override val rewardDestinationModelFlow = MutableSharedFlow<RewardDestinationModel>(replay = 1, onBufferOverflow = BufferOverflow.DROP_OLDEST).apply {
46+
tryEmit(RewardDestinationModel.Restake)
47+
}
4648

4749
override val openBrowserEvent = MutableLiveData<Event<String>>()
4850

0 commit comments

Comments
 (0)