Where can I find keystore sha256 at google play console for assetlinks.json?
Asked Answered
M

3

22

I have assetlinks.json file in my well-know folder. Where can I find sha256_cert_fingerprints?

[
  {
    "relation": [
      "delegate_permission/common.handle_all_urls"
    ],
    "target": {
      "namespace": "android_app",
      "package_name": "com.mobile.droid",
      "sha256_cert_fingerprints": [
        "where I can find it in google play console"
      ]
    }
  }
]

enter image description here

I guess it's the "App signing certificate". Is it correct?

Mention answered 2/5, 2018 at 15:11 Comment(1)
Yes, it corresponds to the certificate used to sign the apk file.Zimmerman
N
20

This changed now, you will find the Signing details under App Integrityenter image description here

Nath answered 1/5, 2021 at 8:34 Comment(1)
If you have integrated Firebase phone auth, then this is the way to get the SHA-1 and SHA-256 for your firebase consoleArawakan
D
9

Copy it directly from a signed APK

keytool -list -printcert -jarfile YOUR_APP.apk

or check this link for more options https://docs.connect.squareup.com/payments/pos/android-fingerprint

Doornail answered 1/8, 2018 at 20:59 Comment(0)
N
1

I recommend you to use this:

Nanceenancey answered 7/10, 2021 at 23:44 Comment(2)
While this link may answer the question, it is better to include the essential parts of the answer here and provide the link for reference. Link-only answers can become invalid if the linked page changes. - From ReviewPadishah
Neither link worksSpiritualist

© 2022 - 2024 — McMap. All rights reserved.