Javier Alonso Member Licensed User Longtime User Jan 28, 2017 #1 In order to get my app open when the user clicks on an URL, Android 6+ needs a json verification file to be hosted on the server, as it is explained in https://developer.android.com/training/app-links/index.html#web-assoc The problem is that I don't know how to generate a SHA256 fingerprint of the certificate I'm using to sign the app, can anyone help me?
In order to get my app open when the user clicks on an URL, Android 6+ needs a json verification file to be hosted on the server, as it is explained in https://developer.android.com/training/app-links/index.html#web-assoc The problem is that I don't know how to generate a SHA256 fingerprint of the certificate I'm using to sign the app, can anyone help me?
Javier Alonso Member Licensed User Longtime User Jan 28, 2017 #2 SOLVED! Just open a cmd window, navigate to C:\Program Files (x86)\Java\jdk1.8.0_20\bin and execute keytool: B4X: keytool -list -v -keystore "C:\path-to\myapp.keystore" , the SHA256 fingerprint will be displayed in the cmd window. Then follow the steps in https://developer.android.com/training/app-links/index.html#web-assoc to create the json file and change teh app manifest, but, in the B4A manifest, just type <intent-filter autoVerify="true"> instead of <intent-filter android:autoVerify="true"> Upvote 0
SOLVED! Just open a cmd window, navigate to C:\Program Files (x86)\Java\jdk1.8.0_20\bin and execute keytool: B4X: keytool -list -v -keystore "C:\path-to\myapp.keystore" , the SHA256 fingerprint will be displayed in the cmd window. Then follow the steps in https://developer.android.com/training/app-links/index.html#web-assoc to create the json file and change teh app manifest, but, in the B4A manifest, just type <intent-filter autoVerify="true"> instead of <intent-filter android:autoVerify="true">
DonManfred Expert Licensed User Longtime User Jan 28, 2017 #3 Inside the ide you can see it too. Look at the form with your private keystore. This form can be resized. Make it bigger and you see the sha256 key Upvote 0
Inside the ide you can see it too. Look at the form with your private keystore. This form can be resized. Make it bigger and you see the sha256 key