Skip to content

Commit

Permalink
fix: signingConfigs for test apk (#918)
Browse files Browse the repository at this point in the history
  • Loading branch information
fr0l authored Sep 27, 2023
1 parent c34ef73 commit fcdd29f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions espresso-server/app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -43,19 +43,19 @@ android {
signingConfigs {
getByName("debug") {
findProperty("appiumKeystoreFile")?.also {
storeFile.apply { file(it.toString()) }
storeFile = file(it.toString())
}

findProperty("appiumKeystorePassword")?.also {
storePassword.apply { file(it.toString()) }
storePassword = it.toString()
}

findProperty("appiumKeyAlias")?.also {
keyAlias.apply { file(it.toString()) }
keyAlias = it.toString()
}

findProperty("appiumKeyPassword")?.also {
keyPassword.apply { file(it.toString()) }
keyPassword = it.toString()
}
}
}
Expand Down

0 comments on commit fcdd29f

Please sign in to comment.