#How do I get access to Unity Application.absoluteURL equivalent through Voxel Busters Deep Link API?

1 messages · Page 1 of 1 (latest)

digital scarab
#

I can't seem to find a way to get the start up URL for the app on Android. But the DeepLinkServices.OnCustomSchemeUrlOpen works for all deep links I get after the app has launched. Any hints to how to achieve this?

whole phoenix
#

Are you looking for install referral url?

digital scarab
#

Nope, just a deep link to the app for sign in purposes from our web site

whole phoenix
#

Did you setup schemes or universal links? iOS or Android?

digital scarab
#

It's schemas for Android that I'm trying to get working. For iOS we rely on the settings and post processor to add links, but then use Unitys callback and absoluteURL to react to the deep links, that works, but not on Android, so there we use the DeepLinkServices.OnCustomSchemeUrlOpen callback but I can't seem to find a way to get the deep link when app is launched from start.

whole phoenix
#

Are you on 2.7.3?

digital scarab
#

let me check which version I'm on

#

2.4.1

whole phoenix
#

oh ok.

#

Thats pretty old. you need to upgrade to lastest for the fix.

digital scarab
#

Ok, how will I get the start URL when I'm on the newer version?

whole phoenix
#

If you mean launch url, yes its fixed

digital scarab
#

yes the launch url. Does fixed mean that I will get it through Unitys API (Application.absoluteURL) and/or that I should expect it to be sent when I subscribe for the DeepLinkServices.OnCustomSchemeUrlOpen callback? Also, thank you so much for your time

whole phoenix
#

Just subscribe to our event. We internally cache until you register for the event in that session.

digital scarab
#

Great, that answers all my question, thanks again for your help.