Skip to content

Commit

Permalink
release sora v3.8.6.0 119
Browse files Browse the repository at this point in the history
  • Loading branch information
arvifox committed Nov 1, 2024
1 parent 283f18c commit 3a90457
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 6 deletions.
8 changes: 4 additions & 4 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ kotlin {
}

// soralution 143 3.8.6.3 2024.10.31
// sora dae 118 3.8.5.3 2024.10.23
// sora dae 119 3.8.6.0 2024.11.01

android {
namespace = "jp.co.soramitsu.sora"
Expand All @@ -30,8 +30,8 @@ android {
applicationId = "jp.co.soramitsu.sora"
minSdk = 26
targetSdk = 34
versionCode = System.getenv("CI_BUILD_ID")?.toInt() ?: 143
versionName = "3.8.6.3"
versionCode = System.getenv("CI_BUILD_ID")?.toInt() ?: 119
versionName = "3.8.6.0"
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
multiDexEnabled = true
// resConfigs "en", "ru", "es", "fr", "de", "nb", "in", "tr", "ar"
Expand Down Expand Up @@ -172,7 +172,7 @@ play {
serviceAccountCredentials = file(System.getenv("CI_PLAY_KEY") ?: "../key/fake.json")
track = "internal"
releaseStatus = ReleaseStatus.DRAFT
releaseName = "3.8.6.3 - SORA Card Improvements"
releaseName = "3.8.6.0 - SORA Card Improvements"
defaultToAppBundles = true
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,8 @@ import jp.co.soramitsu.oauth.base.sdk.contract.SoraCardContractData
import jp.co.soramitsu.oauth.base.sdk.contract.SoraCardFlow

fun IbanStatus?.readyToStartGatehubOnboarding(): Boolean {
return (this != null) && (this == IbanStatus.ACTIVE)
// return (this != null) && (this == IbanStatus.ACTIVE)
return false
}

fun createSoraCardBasicContract() = SoraCardBasicContractData(
Expand Down
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[versions]
agp = "8.7.1"
agp = "8.7.2"
kotlin = "1.9.24"
appcompat = "1.7.0"
coroutines = "1.8.1"
Expand Down

0 comments on commit 3a90457

Please sign in to comment.