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.
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.