Updated on 2026-08-14
This commit is contained in:
commit
d55bc7456c
2 changed files with 9 additions and 3 deletions
|
|
@ -51,8 +51,8 @@ android {
|
|||
flavorDimensions ""
|
||||
productFlavors {
|
||||
tangemAccess {
|
||||
versionCode 116
|
||||
versionName "0.908.2." + generateVersionName()
|
||||
versionCode project.hasProperty('versionCode') ? project.property('versionCode') as int : 116
|
||||
versionName project.hasProperty('versionName') ? project.property('versionName') : "0.1.0.-SNAPSHOT"
|
||||
applicationId "com.tangem.wallet"
|
||||
signingConfig signingConfigs.debug
|
||||
}
|
||||
|
|
|
|||
|
|
@ -44,12 +44,18 @@ platform :android do
|
|||
gradle(
|
||||
task: "clean assemble",
|
||||
flavor: "tangemAccess",
|
||||
build_type: "Debug_beta")
|
||||
build_type: "Debug_beta",
|
||||
properties: {
|
||||
'versionCode' => options[:versionCode],
|
||||
'versionName' => options[:versionName],
|
||||
})
|
||||
gradle(
|
||||
task: "assemble",
|
||||
flavor: "tangemAccess",
|
||||
build_type: "Release",
|
||||
properties: {
|
||||
'versionCode' => options[:versionCode],
|
||||
'versionName' => options[:versionName],
|
||||
"android.injected.signing.store.file" => options[:keystore],
|
||||
"android.injected.signing.store.password" => options[:store_password],
|
||||
"android.injected.signing.key.alias" => options[:key_alias],
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue