5.0.6 • Published 1 year ago

@selfpay/capacitor-firebase-dynamic-links v5.0.6

Weekly downloads
-
License
MIT
Repository
github
Last release
1 year ago

capacitor-firebase-dynamic-links

Capacitor plugin for Firebase Dynamic Links

Installation

npm i @turnoutt/capacitor-firebase-dynamic-links

Android Configuration

In file android/app/src/main/java/**/**/MainActivity.java, add the plugin to the initialization list:

import com.turnoutt.firebase.dynamiclinks.CapacitorFirebaseDynamicLinks;

this.init(savedInstanceState, new ArrayList<Class<? extends Plugin>>() {{

  add(CapacitorFirebaseDynamicLinks.class);

}});

For advanced options please refer https://firebase.google.com/docs/dynamic-links/android/create

iOS Configuration

  1. Configure your app to use dynamic links https://firebase.google.com/docs/dynamic-links/ios/receive

Web

None

Methods

addListener('deepLinkOpen', (data: { url: string })

Add this method when the app starts to listen for the dynamic link.

CapacitorFirebaseDynamicLinks.addListener('deepLinkOpen', (data: { url: string }) => {
      Implement your navigation handler
    })

createDynamicLink(linkConfiguration: LinkConfig)

This method is used to create a new dynamic link.

createDynamicShortLink(linkConfiguration: LinkConfig)

This method is used to create a new dynamic short link.

5.0.6

1 year ago

5.0.5

2 years ago

5.0.4

2 years ago

5.0.3

3 years ago

5.0.1

3 years ago

5.0.0

3 years ago

4.2.4

3 years ago