iOS and Android deep link configuration
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"applinks": { | |
"apps": [], | |
"details": [ | |
{ | |
"appID": "NN3HD78L8S.app.otsukalab", | |
"paths": [ | |
"*" | |
] | |
}, | |
{ | |
"appID": "M5YDH8R3ZC.com.otsuka-us.thelab", | |
"paths": [ | |
"*" | |
] | |
} | |
] | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
{ | |
"relation": ["delegate_permission/common.handle_all_urls"], | |
"target": { | |
"namespace": "android_app", | |
"package_name": "otsukalab.app", | |
"sha256_cert_fingerprints": | |
[ | |
"1F:82:DF:82:79:3F:28:3C:53:94:93:6B:DB:07:DA:BB:52:E0:42:30:E5:3D:69:8E:DE:26:A3:E0:5A:85:3B:14", | |
"15:87:4D:74:52:CE:43:30:10:6A:D4:E8:57:34:A5:BF:DB:AC:1B:4D:4C:EC:7D:12:90:36:FB:2E:FC:53:0A:FF" | |
] | |
} | |
}, | |
{ | |
"relation": ["delegate_permission/common.handle_all_urls"], | |
"target": { | |
"namespace": "android_app", | |
"package_name": "otsukalab.app.liv", | |
"sha256_cert_fingerprints": | |
[ | |
"1F:82:DF:82:79:3F:28:3C:53:94:93:6B:DB:07:DA:BB:52:E0:42:30:E5:3D:69:8E:DE:26:A3:E0:5A:85:3B:14", | |
"15:87:4D:74:52:CE:43:30:10:6A:D4:E8:57:34:A5:BF:DB:AC:1B:4D:4C:EC:7D:12:90:36:FB:2E:FC:53:0A:FF" | |
] | |
} | |
} | |
] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
In order to handle login from magic link, the user needs to be able open the app when taping on the login link in the email.
For android
The
assetlinks.json
file needs to be available on: https://thelabatotsuka.com/.well-known/assetlinks.jsonFor iOS
The
apple-app-site-association
file needs to be available on: http://url3563.thelabatotsuka.com/apple-app-site-associationAlso I'm not sure the
http
scheme will be accepted by iOS. Maybe it will have to be anhttps
link.