hi.
its possible open url links, how the example video. I need to open url outside my app. for now I’ve only seen the web to the app with the dispach-deeplink library.
any other form provided by said tool.
hi.
its possible open url links, how the example video. I need to open url outside my app. for now I’ve only seen the web to the app with the dispach-deeplink library.
any other form provided by said tool.
Here’s what I used.
"click #facebook": function(event) {
if (Meteor.isCordova) {
event.preventDefault();
window.open("https://facebook.com/MyRoutesApp", "_system");
}
}
hi , thanks finally work for me.
I made some adjustments with a library of org.apache.cordova.inappbrowser and managed to make it work.