Android Studio APK Error: Invalid Keystore Format

Viewed 23

I am trying to build an app in Flutter but have come across a big issue. In order to enable app check, sign up using Facebook, etc. I need to get my SHA-1 fingerprint. I have tried to get it by running gradlew signingReport in the terminal of Android Studio; however, I get the following error:

"failed to read key androiddebugkey from store invalid keystore format"

I've read previous posts relating to this but nothing has been able to help me. If anyone could be of assistance, that would be great :).

1 Answers

By deleting the keystore file itself.
Android Studio will generate a new one, which don't have the same error.

Related