Android Question For Amazon Device Messaging i need a MD5 Value from my SignKey

DonManfred

Expert
Licensed User
Longtime User
i tried
MD5: unzip -p {your-app.apk} META-INF/CERT.RSA | keytool -printcert | grep MD5
SHA-256: unzip -p {your-app.apk} META-INF/CERT.RSA | keytool -printcert | grep SHA-256

But none of these output a Md5 Value from my keystore.

How do i get the MD5 value for my provate signkey?
 

KZero

Active Member
Licensed User
Longtime User
try this command

B4X:
C:\Program Files\Java\jdk1.8.0_201\bin>keytool -v -list -alias b4a -keystore FILENAME.keystore -storepass PASSWORD -keypass PASSWORD
md5.png
 
Upvote 0

DonManfred

Expert
Licensed User
Longtime User
Ok, solved. Got the MD5 using java 8, created a app at Amazon App console.
Run it. I now get a registrastionId (similar to FirebaseMessaging Token).

But now i ran into problems which i expected.

I created a new thread for this Issue here as i was not able to fix it as of now.
 
Upvote 0
Top