Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

release sora v3.8.6.0 119 #446

Merged
merged 1 commit into from
Nov 1, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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