Updated on 2026-08-14

This commit is contained in:
Tangem 2025-01-15 16:56:12 +02:00
parent af77c3800a
commit b40cc1c265
2 changed files with 20 additions and 1 deletions

View file

@ -1,3 +1,5 @@
import java.util.Properties
plugins {
alias(deps.plugins.android.application)
alias(deps.plugins.kotlin.android)
@ -25,6 +27,23 @@ android {
androidResources {
generateLocaleConfig = true
}
signingConfigs {
getByName("debug") {
val keystorePath = "src/main/assets/tangem-app-config/android/keystore/debug_keystore"
val propertiesPath = "src/main/assets/tangem-app-config/android/keystore/debug_keystore.properties"
val keystoreProperties = Properties()
file(propertiesPath)
.inputStream()
.use { keystoreProperties.load(it) }
storeFile = file(keystorePath)
storePassword = keystoreProperties["store_password"] as String
keyAlias = keystoreProperties["key_alias"] as String
keyPassword = keystoreProperties["key_password"] as String
}
}
}
configurations.all {

@ -1 +1 @@
Subproject commit e91a2992857afa5cefce05c2750daf175b783603
Subproject commit c36c77faf2101b30f472b2d5ba00dc0b48af9baa