Skip to content

Commit

Permalink
sora dae 2.4.2
Browse files Browse the repository at this point in the history
  • Loading branch information
arvifox committed May 16, 2022
1 parent 1292ace commit 5badfe9
Show file tree
Hide file tree
Showing 13 changed files with 909 additions and 106 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ package jp.co.soramitsu.sora.splash.domain

import jp.co.soramitsu.common.account.SoraAccount
import jp.co.soramitsu.common.domain.credentials.CredentialsRepository
import jp.co.soramitsu.common.logger.FirebaseWrapper
import jp.co.soramitsu.feature_account_api.domain.interfaces.UserRepository
import jp.co.soramitsu.feature_account_api.domain.model.OnboardingState
import javax.inject.Inject
Expand All @@ -33,6 +34,7 @@ class MigrationManager @Inject constructor(
credentialsRepository.saveKeyPair(soraKeys, soraAccount)
userRepository.insertSoraAccount(soraAccount)
userRepository.setCurSoraAccount(soraAccount)
FirebaseWrapper.log("Migration ma done")
}
}
return true
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ class SplashViewModel(
fun nextScreen() {
viewModelScope.launch {
val migrationDone = interactor.getMigrationDoneAsync().await()
FirebaseWrapper.log("Migration done $migrationDone")
FirebaseWrapper.log("Splash next screen $migrationDone")
when (val state = interactor.getRegistrationState()) {
OnboardingState.REGISTRATION_FINISHED -> {
interactor.initCurSoraAccount()
Expand Down
6 changes: 3 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -64,9 +64,9 @@ buildscript {

ext {
// soralution 57 2.4.2 2022.04.03
// sora dae 60 2.4.0 2022.04.11
appVersionCode = Integer.valueOf(System.env.BUILD_NUMBER ?: 60)
appVersionName = '2.4.0'
// sora dae 62 2.4.2 2022.05.16
appVersionCode = Integer.valueOf(System.env.BUILD_NUMBER ?: 62)
appVersionName = '2.4.2'

compileVersion = 31
minVersion = 21
Expand Down
2 changes: 1 addition & 1 deletion common/src/main/assets/sora2_metadata

Large diffs are not rendered by default.

Loading

0 comments on commit 5badfe9

Please sign in to comment.