From 25c8fc0c3972d4373e4eddada3edf97a5a1dadb5 Mon Sep 17 00:00:00 2001 From: Nigel Breslaw Date: Sun, 4 Feb 2024 17:03:04 +0100 Subject: [PATCH] Publish assetlink with multiple fingerprints (#281) Apps published from the playstore have the production fingerprint. That cannot be used locally without taking over the app signing completely which is something to avoid. So to be able to test local builds the debug.keystore fingerprint needs to be added to the assetlinks.json. The Google docs are not crystal clear here. So this is the first attempt to add the debug fingerprint. https://developer.android.com/training/app-links/verify-android-applinks --- gg-mono/apps/react-frontend/public/.well-known/assetlinks.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/gg-mono/apps/react-frontend/public/.well-known/assetlinks.json b/gg-mono/apps/react-frontend/public/.well-known/assetlinks.json index 4e0fc237f..b3bcac61d 100644 --- a/gg-mono/apps/react-frontend/public/.well-known/assetlinks.json +++ b/gg-mono/apps/react-frontend/public/.well-known/assetlinks.json @@ -5,7 +5,8 @@ "namespace": "android_app", "package_name": "com.guardianghost", "sha256_cert_fingerprints": [ - "03:8C:FF:63:6D:B2:BB:00:0D:37:4D:AF:D3:37:CC:CA:48:9B:BF:33:0B:EB:91:86:20:79:80:16:AE:E9:B2:FB" + "03:8C:FF:63:6D:B2:BB:00:0D:37:4D:AF:D3:37:CC:CA:48:9B:BF:33:0B:EB:91:86:20:79:80:16:AE:E9:B2:FB", + "FA:C6:17:45:DC:09:03:78:6F:B9:ED:E6:2A:96:2B:39:9F:73:48:F0:BB:6F:89:9B:83:32:66:75:91:03:3B:9C" ] } }