Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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

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?

like image 937
Pavlo Datsiuk Avatar asked May 02 '18 15:05

Pavlo Datsiuk


People also ask

How can I get SHA256 from keystore?

Obtaining the SHA-256 Fingerprint from the Signature FileRun keytool -list -v -keystore <keystore-file>. In the preceding command, <keystore-file> is the complete path to the app's signing certificate. For example, D:\Android\mykeystore. jks.

Where is well known Assetlinks JSON?

well-known/" is the directory that sits on the root folder and contains the "assetlinks. json" file.


2 Answers

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

like image 141
Alaa Eddine Cherbib Avatar answered Oct 16 '22 04:10

Alaa Eddine Cherbib


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

like image 6
Aymen Boumaiza Avatar answered Oct 16 '22 03:10

Aymen Boumaiza