You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Aug 17, 2023. It is now read-only.
Ionic V3.
"@ionic-native/deeplinks": "^4.20.0".
Looking into the source code:
File= IonicDeeplink.java
Line = 77
source = Log.d(TAG, "Got a new intent: " + intentString + " " + intent.getScheme() + " " + action + " " + url);
The action is com.facebook.application.xxxxxx ( xxxxx = applicationId )
The next function called is a validation:
if ( !Intent.ACTION_VIEW.equals(action) || url == null) { return; }
When a link is clicked from Facebook mobile application the action is not Intent.ACTION_VIEW so the event is not passed to ionic.
The text was updated successfully, but these errors were encountered: