feat: Add assetlinks.json
All checks were successful
Build Docker / BuildImage (push) Successful in 45s
All checks were successful
Build Docker / BuildImage (push) Successful in 45s
This commit is contained in:
parent
de476eb7ab
commit
f940f4418d
8
.well-known/assetlinks.json
Normal file
8
.well-known/assetlinks.json
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
[{
|
||||||
|
"relation": ["delegate_permission/common.handle_all_urls"],
|
||||||
|
"target": {
|
||||||
|
"namespace": "android_app",
|
||||||
|
"package_name": "au.woodburn.nathan",
|
||||||
|
"sha256_cert_fingerprints": ["3F:C7:09:DE:FA:79:69:25:80:CB:23:A0:CE:5E:50:BB:BC:00:70:30:55:E8:15:70:FA:F9:4E:97:1E:39:59:7B"]
|
||||||
|
}
|
||||||
|
}]
|
@ -944,6 +944,11 @@ def download(path):
|
|||||||
return send_file(path)
|
return send_file(path)
|
||||||
return render_template("404.html"), 404
|
return render_template("404.html"), 404
|
||||||
|
|
||||||
|
@app.route("/.well-known/<path:path>")
|
||||||
|
def wellknown(path):
|
||||||
|
return send_from_directory(".well-known", path)
|
||||||
|
|
||||||
|
|
||||||
@app.route("/<path:path>")
|
@app.route("/<path:path>")
|
||||||
def catch_all(path: str):
|
def catch_all(path: str):
|
||||||
global handshake_scripts
|
global handshake_scripts
|
||||||
|
Loading…
Reference in New Issue
Block a user