Hi,
I have a react native app, where we have integrated the Android SDK natively and subclassed `Autopilot` as you have described. Takeoff is called from the native side.
I am trying to configure the app to handle deeplinks, everything is working great on iOS side with UrbanAirship.addListener('deepLink', onLink); however onLink is not getting called on android.
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data android:scheme="@string/app_link_scheme" android:host="@string/app_link_host" android:pathPrefix="@string/app_link_prefix" />
</intent-filter>
but still no luck.
Am I missing some configuration?
Also, your docs (https://docs.airship.com/platform/android/getting-started/) describe...
airship.setDeepLinkListener(deepLink -> {
// Handle the deepLink
return true;
});
I think this documentation needs to be updated as this method does not exist..
Thanks,
Comments
6 comments