Custom-URL-scheme
Custom-URL-scheme copied to clipboard
how to open specific page of application
see my question
https://stackoverflow.com/questions/44797486/open-specific-page-using-ionic1-firebase
You have the solution there now. One thing that you need also to double check is when you maximize the app with a new link and maybe the function is not being called.
For that I use: document.addEventListener("resume", this.getLinks, false);
@harishmahajan try this:
window.handleOpenURL = function (url) {
window.location.hash = url.slice(7) // your URLscheme.length
}