Getting Started
Stay organized with collections
Save and categorize content based on your preferences.
Overview
The Digital Asset Links protocol and API enable an app or website to make public,
verifiable statements about other apps or websites. For example, a website
can declare that it is associated with a specific Android app, or it can declare that
it wants to share user credentials with another website.
Here are some possible uses for Digital Asset Links:
- Website A declares that links to its site should open in a designated app on
mobile devices, if the app is installed.
- Website A declares that it can share its Chrome user credentials with website
B so that the user won't have to log in to website B if it is logged into website A.
- App A declares that it can share device settings, such as location, with website B.
Key terms
- Principal: The principal is the app or website making the statement. In Digital Asset Links, the principal is always the app or website that hosts the statement list.
- Statement list: Statements are contained in a statement list that contains
one or more statements. A statement list is cleartext and publicly accessible, in a location
that is controlled by the principal and difficult to spoof or tamper with.
It can be a free-standing file, or a section of another, larger item. For example, on a website, it is an entire file; in an Android app, it is a section in the app manifest.
Statements can be viewed and verified by anyone, using non-proprietary methods. See the statement list documentation for more information.
- Statement: A statement is a tightly structured JSON construct that consists of a relation (what the statement says to do, for example: Enable sharing credentials) and a target (the website or app that the relation applies to). Therefore, each statement is like a sentence, where principal says relation about target.
- Statement consumer: A statement consumer requests a statement list from a principal, checks for the presence of a statement against a given principal, and if it exists, can perform the action specified. See the statement comsuming documentation for more information.
Quick usage example
Here's a very simplified example of how the website www.example.com could
use Digital Asset Links to specify that any links to URLs in that site should
open in a designated app rather than the browser:
- The website www.example.com publishes a statement list at
https://www.example.com/.well-known/assetlinks.json. This is the official
name and location for a statement list on a site; statement lists in any
other location, or with any other name, are not valid for this site. In
our example, the statement list consists of one statement, granting its
Android app the permission to open links on its site:
[{
"relation": ["delegate_permission/common.handle_all_urls"],
"target" : { "namespace": "android_app", "package_name": "com.example.app",
"sha256_cert_fingerprints": ["hash_of_app_certificate"] }
}]
A statement list supports an array of statements within the [ ] marks, but
our example file contains only one statement.
sha256_cert_fingerprints
is the SHA256 fingerprints of your app’s signing certificate.
Find more details in the Android App Links documentation.
- The Android app listed in the statement above has an intent filter
that specifies the scheme, host, and path pattern of URLs that it wants
to handle: in this case, https://www.example.com. The intent filter
includes a special attribute
android:autoVerify
, new to
Android M, which indicates that Android should verify the statement
on the website described in the intent filter when the app is installed.
- A user installs the app. Android sees the intent filter with the
autoVerify
attribute and checks for the presence of the
statement list at the specified site; if present, Android checks
whether that file includes a statement granting link handling to
the app, and verifies the app against the statement by certificate
hash. If everything checks out, Android will then forward any https://www.example.com intents to the example.com app.
- The user clicks a link to https://www.example.com/puppies on
their device. This link could be anywhere: in a browser, in a
Google Search Appliance suggestion, or anywhere else. Android
forwards the intent to the example.com app.
- The example.com app receives the intent and chooses to handle
it, opening the puppies page in the app. If for some reason the
app had declined to handle the link, or if the app were not on
the device, then the link would have been sent to the next default
intent handler matching that intent pattern (often the browser).
Important considerations and limitations:
- The protocol does not authenticate the principal making the
statement, but the statement is located in a specific location
strongly associated with the principal, and under control of the principal.
- The protocol does not authenticate the statement target,
but it provides a means for the caller to authenticate the
target (for example, a statement identifies mobile app targets
by certificate hash and package name).
- The protocol does not natively perform any statement actions;
rather, it enables the ability to expose statements, which a
consuming application must validate and then decide whether and
how to act upon. Android M natively performs these steps for you;
for example, if a website delegates link handling to a specific app,
Android checks and verifies the statement, verifies the target app,
and then offers the app the option to handle the given link.
- The protocol does not enable making statements about two third
parties: that is, website A can make a statement about website B,
but website A cannot make a statement about website B's relationship
to website C. However, if website B trusts website A, it can check
website A for a statement granting permission to website C, and decide to implement that.
Next steps
- See if there is explicit documentation for your use case.
- Learn about creating a statement.
Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License, and code samples are licensed under the Apache 2.0 License. For details, see the Google Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.
Last updated 2025-08-28 UTC.
[null,null,["Last updated 2025-08-28 UTC."],[[["\u003cp\u003eDigital Asset Links enable apps and websites to make verifiable statements about their relationships with other apps and websites, such as link handling or credential sharing.\u003c/p\u003e\n"],["\u003cp\u003eThese statements are stored in a publicly accessible statement list, typically an "assetlinks.json" file hosted by the app or website making the statement.\u003c/p\u003e\n"],["\u003cp\u003eAndroid M and above automatically uses Digital Asset Links to verify website-to-app associations and direct links to the appropriate app if installed.\u003c/p\u003e\n"],["\u003cp\u003eThe protocol provides a foundation for trust and delegation between digital entities but relies on consumers to validate and act upon the statements.\u003c/p\u003e\n"]]],[],null,["# Getting Started\n\nOverview\n--------\n\nThe Digital Asset Links protocol and API enable an app or website to make public,\nverifiable *statements* about other apps or websites. For example, a website\ncan declare that it is associated with a specific Android app, or it can declare that\nit wants to share user credentials with another website.\n\nHere are some possible uses for Digital Asset Links:\n\n- Website A declares that links to its site should open in a designated app on mobile devices, if the app is installed.\n- Website A declares that it can share its Chrome user credentials with website B so that the user won't have to log in to website B if it is logged into website A.\n- App A declares that it can share device settings, such as location, with website B.\n\n### Key terms\n\n- **Principal:** The principal is the app or website making the statement. In Digital Asset Links, the principal is always the app or website that hosts the statement list.\n- **Statement list** : Statements are contained in a *statement list* that contains one or more statements. A statement list is cleartext and publicly accessible, in a location that is controlled by the principal and difficult to spoof or tamper with. It can be a free-standing file, or a section of another, larger item. For example, on a website, it is an entire file; in an Android app, it is a section in the app manifest. Statements can be viewed and verified by anyone, using non-proprietary methods. [See the statement list documentation for more information](/digital-asset-links/v1/create-statement).\n- **Statement:** A statement is a tightly structured JSON construct that consists of a *relation* (what the statement says to do, for example: Enable sharing credentials) and a *target* (the website or app that the relation applies to). Therefore, each statement is like a sentence, where *principal* says *relation* about *target* . \n- **Statement consumer:** A statement consumer requests a statement list from a principal, checks for the presence of a statement against a given principal, and if it exists, can perform the action specified. [See the statement comsuming documentation for more information](/digital-asset-links/v1/consuming)*.*\n\nQuick usage example\n-------------------\n\nHere's a very simplified example of how the website www.example.com could\nuse Digital Asset Links to specify that any links to URLs in that site should\nopen in a designated app rather than the browser:\n\n1. The website www.example.com publishes a statement list at https://www.example.com/.well-known/assetlinks.json. This is the official name and location for a statement list on a site; statement lists in any other location, or with any other name, are not valid for this site. In our example, the statement list consists of one statement, granting its Android app the permission to open links on its site: \n\n ```\n [{\n \"relation\": [\"delegate_permission/common.handle_all_urls\"],\n \"target\" : { \"namespace\": \"android_app\", \"package_name\": \"com.example.app\",\n \"sha256_cert_fingerprints\": [\"hash_of_app_certificate\"] }\n }]\n ```\n A statement list supports an array of statements within the \\[ \\] marks, but our example file contains only one statement. `sha256_cert_fingerprints` is the SHA256 fingerprints of your app's signing certificate. Find more details in the [Android App Links documentation](https://developer.android.com/training/app-links/verify-android-applinks#web-assoc).\n2. The Android app listed in the statement above has an intent filter that specifies the scheme, host, and path pattern of URLs that it wants to handle: in this case, https://www.example.com. The intent filter includes a special attribute `android:autoVerify`, new to Android M, which indicates that Android should verify the statement on the website described in the intent filter when the app is installed.\n3. A user installs the app. Android sees the intent filter with the `autoVerify` attribute and checks for the presence of the statement list at the specified site; if present, Android checks whether that file includes a statement granting link handling to the app, and verifies the app against the statement by certificate hash. If everything checks out, Android will then forward any https://www.example.com intents to the example.com app.\n4. The user clicks a link to https://www.example.com/puppies on their device. This link could be anywhere: in a browser, in a Google Search Appliance suggestion, or anywhere else. Android forwards the intent to the example.com app.\n5. The example.com app receives the intent and chooses to handle it, opening the puppies page in the app. If for some reason the app had declined to handle the link, or if the app were not on the device, then the link would have been sent to the next default intent handler matching that intent pattern (often the browser).\n\nImportant considerations and limitations:\n-----------------------------------------\n\n- The protocol does not authenticate the principal making the statement, but the statement is located in a specific location strongly associated with the principal, and under control of the principal.\n- The protocol does not authenticate the statement target, but it provides a means for the caller to authenticate the target (for example, a statement identifies mobile app targets by certificate hash and package name).\n- The protocol does not natively perform any statement actions; rather, it enables the ability to expose statements, which a consuming application must validate and then decide whether and how to act upon. Android M natively performs these steps for you; for example, if a website delegates link handling to a specific app, Android checks and verifies the statement, verifies the target app, and then offers the app the option to handle the given link.\n- The protocol does not enable making statements about two third parties: that is, website A can make a statement about website B, but website A cannot make a statement about website B's relationship to website C. However, if website B trusts website A, it can check website A for a statement granting permission to website C, and decide to implement that.\n\nNext steps\n----------\n\n1. [See if there is explicit documentation for your use case.](/digital-asset-links/v1/using)\n2. [Learn about creating a statement.](/digital-asset-links/v1/create-statement)"]]