Android Studio Alias / KEY STORE
How to handle a lost KeyStore password in Android?
How to get key alias from keystore android studio?



taskArtifacts.bin keystore alias

key

app signing privatekey



key key

key

-------------------------------------------------------

ust encountered this problem myself - luckily I was able to find the password in some
Gradle's temporary file. Just in case anyone lands here: try looking for this file

Project\.gradle\2.4\taskArtifacts\taskArtifacts.bi n

or

.gradle/3.5/taskHistory/taskHistory.bin

.gradle/5.1.1/executionHistory/executionHistory.bin
.gradle/caches/5.1.1/executionHistory/executionHistory.bin
and search for
storePassword
It was there in cleartext. In general, if you do remember at least a part of your password, try searching for a file containing this substring and hopefully you will fish out something.
Wanted to throw it out here, maybe it will eventually help someone.

:
https://stackoverflow.com/questions/...ord-in-android