28 August, 2020

Keystore file does not exist

The following steps are required to solve this problem.

Error: keytool error: java.lang.Exception: Keystore file does not exist: path-to-debug-or-production-keystore


  • open command-line tool - WINDOW+R
  • go to C:\Program Files\Java\jdk1.8.0_261 (or your java version)


And run below command

keytool -exportcert -alias androiddebugkey -keystore C:\Users\{your.username}\.android\debug.keystore -list -v


Note* to use C:\Users\{your.username}\.android\debug.keystore instead of ~/.android\debug.keystore. I still got the error when type this shorten way.


cmd

Microservices vs Monolithic Architecture

 Microservices vs Monolithic Architecture Here’s a clear side-by-side comparison between Microservices and Monolithic architectures — fro...