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
I am building an app with Meteor and Cordova 5.0, my devices are on Android 5.1 and 4.3.
I can't figure out a way to trigger the handleOpenURL function if the app wasn't launched before calling the custom scheme. The app is still launched, though.
If the app is already launched and in background, it works fine.
I'm simply using
handleOpenURL = function handleOpenURL(url) {
var view = url.replace("totems://", "");
Router.go(view);
};
(it defers a little from the example since it's a Meteor tweak).
It looks like it's the same issue as #93 on iOS.