How to implement deep links in v3? #4414
-
I'm trying to test out the release candidate of capacitor v3. I've installed all the needed plugins, but I've also implemented deep links in my app using the react example code from the docs:
However, this uses a call to Plugins, which no longer works; I get this TypeScript error:
How can I update this component for use with v3? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
In Capacitor 3 all plugins have been moved out of core, you now have to install the plugins you want to use independently. https://capacitorjs.com/docs/v3/updating/3-0#official-plugins So you don't import Plugins from core anymore, you use the plugin directly from the plugin package |
Beta Was this translation helpful? Give feedback.
In Capacitor 3 all plugins have been moved out of core, you now have to install the plugins you want to use independently.
https://capacitorjs.com/docs/v3/updating/3-0#official-plugins
So you don't import Plugins from core anymore, you use the plugin directly from the plugin package
https://capacitorjs.com/docs/v3/updating/3-0#plugin-imports