From 3c475d22caace7dea6be06ca4a02fa0263f5f26a Mon Sep 17 00:00:00 2001 From: Wilmer van der Gaast Date: Fri, 24 Nov 2023 16:41:09 -0500 Subject: [PATCH] Add `ggt.gaa.st/.well-known/assetlinks.json` to complete Play Store deeplink domain names verification. --- ggt/app.yaml | 11 ++++++++--- ggt/assetlinks.json | 14 ++++++++++++++ 2 files changed, 22 insertions(+), 3 deletions(-) create mode 100644 ggt/assetlinks.json diff --git a/ggt/app.yaml b/ggt/app.yaml index e11ebc37..b6e238dd 100644 --- a/ggt/app.yaml +++ b/ggt/app.yaml @@ -1,4 +1,4 @@ -runtime: python310 +runtime: python311 inbound_services: - warmup @@ -10,15 +10,20 @@ handlers: static_files: index.html upload: index.html +- url: /_ah/warmup + secure: optional + script: auto + - url: /nodatapolicy.* secure: always redirect_http_response_code: 301 static_files: nodatapolicy.html upload: nodatapolicy.html -- url: /_ah/warmup +- url: /.well-known/assetlinks.json secure: optional - script: auto + static_files: assetlinks.json + upload: assetlinks.json - url: /.* secure: always diff --git a/ggt/assetlinks.json b/ggt/assetlinks.json new file mode 100644 index 00000000..ddeeefc3 --- /dev/null +++ b/ggt/assetlinks.json @@ -0,0 +1,14 @@ +[ + { + "relation": [ + "delegate_permission/common.handle_all_urls" + ], + "target": { + "namespace": "android_app", + "package_name": "net.gaast.giggity", + "sha256_cert_fingerprints": [ + "99:A5:DE:A0:63:C4:27:9F:42:09:3A:3B:97:92:94:DD:04:86:1F:7D:C8:68:77:8B:CB:36:2B:A5:EB:CF:E4:7F" + ] + } + } +] \ No newline at end of file