sms_autofill icon indicating copy to clipboard operation
sms_autofill copied to clipboard

How to check hash key of the app when published on playstore?

Open DevHitesh29 opened this issue 2 years ago • 6 comments

I checked the hash key on debug and release mode. The haskey is different for each mode and might differ in the app bundle. So how can I get the haskey of the build which is published on the play store so that autofill functionality can be resumed by changing the key on the SMS template?

Thank you in advance

DevHitesh29 avatar May 12 '22 10:05 DevHitesh29

@DevHitesh29 did you find how to get the release mode hash key?

kashiflab avatar Aug 29 '22 05:08 kashiflab

Hi @DevHitesh29 Is the app signature/hash being same for android release APK and app bundle?

danishkhawaja98 avatar Feb 10 '23 07:02 danishkhawaja98

@DevHitesh29 did you find how to get the release mode hash key?

Yes implemented a workaround to get the hash key on release mode by printing it on the snack bar and removing the code later in the final release.

Hiteshc29 avatar Feb 14 '23 16:02 Hiteshc29

Hi @DevHitesh29 Is the app signature/hash being same for android release APK and app bundle?

Yes they are same

Hiteshc29 avatar Feb 14 '23 16:02 Hiteshc29

Hi @DevHitesh29 Is the app signature/hash being same for android release APK and app bundle?

Yes they are same

According to this article, the app signature for release build and signed APK are different. Can you look into this and explain me that what I am doing wrong.

danishkhawaja98 avatar Feb 15 '23 06:02 danishkhawaja98

article

Hi @DevHitesh29 Is the app signature/hash being same for android release APK and app bundle?

Yes they are same

According to this article, the app signature for release build and signed APK are different. Can you look into this and explain me that what I am doing wrong.

Do sign the APK first, and then check for the SMS signature/hash key, it will be the same. I have observed that the app key changes after the app signing and on changing the package name too.

So check the hash key after the app signature and use the same in your SMS template. It will be the same on the release APK and app bundle

Hiteshc29 avatar Feb 15 '23 18:02 Hiteshc29