airbnb / DeepLinkDispatch

A simple, annotation-based library for making deep link handling better on Android
http://nerds.airbnb.com/deeplinkdispatch/
4.37k stars 409 forks source link

DeepLinkHandler<T> interface is not available in latest version i.e. 5.4.3 #345

Open zeeshan5422 opened 2 years ago

zeeshan5422 commented 2 years ago

I want to handle the deep links as in the sample module, but unfortunately below interface is not available inside the library.

package com.airbnb.deeplinkdispatch.handler

interface DeepLinkHandler { fun handleDeepLink(context: Context, deepLinkArgs: T) }

Please correct me if I am wrong, but as of now my understanding it is impossible to handle deeplinks apart from activity classes.