iamjc015
iamjc015

Reputation: 2235

Deep Linking with IOS and Android Nativescript

I need to implement deeplinking within my app. My problem is there is little to no resources on the internet.

Where can I start studying about deep linking implementation?

I am using Angular as my framework.

Thanks!

Upvotes: 0

Views: 2758

Answers (1)

Manoj
Manoj

Reputation: 21908

Use nativescript-urlhandler plugin

tns plugin add nativescript-urlhandler

The instructions in the plugin docs shows, how you may handle non-http link. There may be additional configurations required for Http links, Android / iOS setup.

Using the plugin you may read the url that was used to open the app, based on the parameters you may perform navigation.

Upvotes: 2

Related Questions