Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is it possible to process a deep link if user has just downloaded the app from the store?

Is it possible to process a deep link in next case:

  1. User has no app at his phone
  2. User downloaded app from AppStore by deep link
  3. User launch app

Any ideas?

like image 358
Andrew Adamovitch Avatar asked Nov 14 '25 12:11

Andrew Adamovitch


1 Answers

There is a type of deeplink called as "Deferred Deep link", what it does is it checks whether app is installed or not, if not then redirect to AppStore and once installed after user log's in, then deeplink redirects the user to that particular view controller.

Refer to this:

Deferred Deep Linking in iOS

https://medium.com/flawless-app-stories/bring-users-back-to-your-app-deep-linking-for-ios-5c57d8d85c2d

like image 154
hussain Avatar answered Nov 17 '25 10:11

hussain