A simple library for handling incoming app links.
The ultimate developer guide to Android application linking methods.
This project is the Android component of the MobileDeepLinking specification, the industry standard for mobile application deeplinking. This spec and accompanying libraries simplify and reduce implementation time of deep links as well as provide flexible and powerful features for routing to custom behavior.
DeepLinkDispatch provides a declarative, annotation-based API to declare application deep links.
You can register an Activity
to handle specific deep links by annotating it with @DeepLink
and a URI. DeepLinkDispatch will parse the URI and dispatch the deep link to the appropriate Activity, along with any parameters specified in the URI.