In my case, I had already generated an APK file using the command ionic cordova build android --prod
and I needed to get the SHA-1 fingerprint for the already existing APK file. Here's how I got it by running the following command in the App directory:
keytool -list -printcert -jarfile app-debug.apk
So, I basically ran the above command in the following app location:
C:\myApp\platforms\android\app\build\outputs\apk\debug>keytool -list -printcert -jarfile app-debug.apk
This gave me the SHA1 fingerprint as: 7B:6B:AD:...
Hope this helps someone!