Asset Links is a protocol to securely capture statements made by digital assets such as web sites or mobile apps about their relationship with other digital assets. Statements can reliably be attributed to the owners of the source assets.
Questions tagged [digital-assets-links]
29 questions
18
votes
4 answers
Instant App - Digital Asset Links Protocol
Whenever I tried to upload my instant app apks to Play store, it gives the following error :
Your site 'www.mywebsitename.com' has not been linked through the Digital
Assets Link protocol to your app. Please link your site through the
Digital…

senaaltun
- 309
- 3
- 11
12
votes
1 answer
Android: app linking - supporting only certain paths?
I want to setup app linking for my app but only for it to be active on certain paths. In other words, in my manifest:

Jon
- 7,941
- 9
- 53
- 105
12
votes
3 answers
Handling specific routes in Android M app links
Android M has added support for App links by creating a special assetlinks.json on the web server to delegate link handling to a mobile app.
For example, here's the content of such file:
[{
"relation":…

Michael
- 22,196
- 33
- 132
- 187
10
votes
1 answer
How do I add multiple SHA-256 fingerprints to my assetlinks.json for verifying Android links?
I have my assetlinks set up right now like so:
[
{
"relation": ["delegate_permission/common.handle_all_urls"],
"target": {
"namespace": "android_app",
"package_name": "com.myapp.app",
"sha256_cert_fingerprints":
[
…

Johnny
- 698
- 8
- 21
9
votes
1 answer
How to set up an Angular project for iOS universal links and Android asset links to open links in the native mobile apps
Does anyone know how I should set up my Angular project to use native mobile app linkage?
E.g.
iOS: Universal Links: https://developer.apple.com/library/archive/documentation/General/Conceptual/AppSearch/UniversalLinks.html
Android: Digital Asset…

Carli Beeli
- 790
- 1
- 11
- 26
9
votes
1 answer
Link is not opened as instant app in some devices
I had published my instant app in play store. when i click the link from gmail it opens as instant app in some devices (Samsung s6 note ,moto g4 plus)
In some devices its not working ,but those devices has Settings->Google->Instant Apps option. but…

Dinesh Kannan
- 1,255
- 13
- 32
6
votes
1 answer
Android: Handle App Link Verification failure at install time
I added app link feature with autoVerify set for my app following link
On testing the app, it worked in the begining. Then after reinstalling the build, not working.
On debugging what I found is the response time for my .well-known/assetlinks.json…

bijoshtj
- 299
- 4
- 14
5
votes
4 answers
Android, Generate Digital Asset Link: keystore file for signing the app
I implemented universal linking for my Android app. Everything works fine so far. I click on a universal link and will be immediately redirected to the app. However, I have always used debug for the Digital Asset Links. For the release I need the…

kuzdu
- 7,124
- 1
- 51
- 69
5
votes
2 answers
Android Instant App - Play Console release/deploy error and DAL(digital Asset Link) not linked
I'm trying to figure out why the play store will not accept my instant app build. I have successfully deployed an Alpha regular app release to testers since it is a prerequisite to release an instant app. I am trying to deploy a development release…

James
- 4,573
- 29
- 32
4
votes
0 answers
Digital Asset Link verification fails sporadically. Unable to draw any pattern of failure
We have to load a third party HTML file on our Android application custom chrome tab. To access the file the third party requires our application to pass (Non-Whitelisted)request headers in the request to download the HTML file.
We have utilized the…

Lance Rodrigues
- 91
- 1
- 6
4
votes
0 answers
Can Google's Digital Asset Links file caching mechanism be manipulated?
I am noticing the effects of a caching mechanism between my device & the DAL hosted at https://example.com/.well-known/assetlinks.json and I'm looking to understand how it works, and if it can be bypassed.
The issue is that I'm prototyping changes…

siger
- 3,112
- 1
- 27
- 42
3
votes
1 answer
How to do Digital Asset Links Verification on the sites that does not give an access to root folder like Shopify?
I have generated a PWA of my Shopify site. Now, I want to upload it on the Google Play Store, so I used PWABuilder to create my app package. I have successfully completed all the steps and generated the store package.
Now, As suggested here to work…

Kishan Bharda
- 5,446
- 3
- 30
- 57
3
votes
1 answer
Trusted Web Activity: Not able to remove URL header
I am exploring the Trusted Web Activity concepts and trying to launch it like this -
final CustomTabsIntent.Builder builder = new CustomTabsIntent.Builder();
final CustomTabsIntent customTabsIntent = builder.build(); …

Ayush Patel
- 33
- 3
3
votes
0 answers
Hosting digital asset link json file in a path instead of domain root?
Has anyone tried hosting assetlinks.json file in a query path instead of domain root?
Background:
We are currently working on Android FIDO Client implementation which interacts with custom FIDO server application.
Here is the codelab if you're…

albeee
- 1,452
- 1
- 12
- 20
2
votes
3 answers
Can't link Android app with Digital Asset Link since app doesn't have a signature
I'm trying to to setup a Digital asset link from my website to my app, but I can't get it to work. I made sure the intent-filter was present in my manifest and I uploaded a assetlinks.json file using my Play store signing SHA 256 fingerprint, tested…

ACactus
- 41
- 4