CB-12159 Android: Keystore password prompt won't show up

This closes #351
This commit is contained in:
daserge 2016-12-05 18:21:28 +03:00 committed by Joe Bowser
parent 1af5ade39a
commit 6c60dc5dc8

View File

@ -264,7 +264,7 @@ def promptForReleaseKeyPassword() {
gradle.taskGraph.whenReady { taskGraph -> gradle.taskGraph.whenReady { taskGraph ->
taskGraph.getAllTasks().each() { task -> taskGraph.getAllTasks().each() { task ->
if (task.name == 'validateReleaseSigning') { if (task.name == 'validateReleaseSigning' || task.name == 'validateSigningRelease') {
promptForReleaseKeyPassword() promptForReleaseKeyPassword()
} }
} }