This commit is contained in:
Aevann1 2022-02-18 12:24:10 +02:00
parent dde8f99401
commit cde629cecb
4 changed files with 15 additions and 1 deletions

Binary file not shown.

Binary file not shown.

View file

@ -0,0 +1,9 @@
[{
"relation": ["delegate_permission/common.handle_all_urls"],
"target": {
"namespace": "android_app",
"package_name": "files",
"sha256_cert_fingerprints":
["ED:D9:72:9B:CD:61:52:18:AB:95:D0:21:BD:7F:04:6F:89:04:AC:B9:73:A2:2E:90:A5:2B:0C:13:F8:4A:EC:18"]
}
}]

View file

@ -401,3 +401,8 @@ def settings_security(v):
v=v,
mfa_secret=pyotp.random_base32() if not v.mfa_secret else None
)
@app.get("/.well-known/assetlinks.json")
def googleplayapp():
with open("files/assets/assetlinks.json", "r") as f:
return Response(f.read(), mimetype='application/json')