{"id":20282072,"url":"https://github.com/nbadiganti/ionic-deeplink","last_synced_at":"2025-07-17T18:31:41.815Z","repository":{"id":150919774,"uuid":"162098130","full_name":"nbadiganti/ionic-deeplink","owner":"nbadiganti","description":null,"archived":false,"fork":false,"pushed_at":"2023-10-10T21:41:17.000Z","size":2019,"stargazers_count":0,"open_issues_count":1,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-03-04T03:27:30.644Z","etag":null,"topics":["android-application","angular6","deeplinking","hybrid-application","ionic-framework","ionic3","mobile-app"],"latest_commit_sha":null,"homepage":null,"language":"SCSS","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/nbadiganti.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2018-12-17T08:26:07.000Z","updated_at":"2021-08-02T10:19:32.000Z","dependencies_parsed_at":null,"dependency_job_id":"accfdaae-7b77-48cc-8ffa-e20b97cfc2c7","html_url":"https://github.com/nbadiganti/ionic-deeplink","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/nbadiganti/ionic-deeplink","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nbadiganti%2Fionic-deeplink","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nbadiganti%2Fionic-deeplink/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nbadiganti%2Fionic-deeplink/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nbadiganti%2Fionic-deeplink/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/nbadiganti","download_url":"https://codeload.github.com/nbadiganti/ionic-deeplink/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nbadiganti%2Fionic-deeplink/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":265645387,"owners_count":23804183,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["android-application","angular6","deeplinking","hybrid-application","ionic-framework","ionic3","mobile-app"],"created_at":"2024-11-14T14:08:01.692Z","updated_at":"2025-07-17T18:31:41.799Z","avatar_url":"https://github.com/nbadiganti.png","language":"SCSS","funding_links":["https://www.paypal.me/codingcursor/"],"categories":[],"sub_categories":[],"readme":"# IONIC - Deeplinking with website urls in mobile app\n\nDeeplinks handles registering and displaying specific views based on URLs from website to inside the app navigation. For example, product purchase from website to open in app. If the app is not installed, it will navigate the user to open the app to download\n\n### Show some :heart: and star the repo to support the project\n\n### Instructions and plugin to link with your app \n```bash\n$ ionic start deeplink blank \n$ cd deeplink\n$ ionic cordova plugin add ionic-plugin-deeplinks --variable URL_SCHEME=deeplink --variable DEEPLINK_SCHEME=https --variable DEEPLINK_HOST=driftycode.com --variable ANDROID_PATH_PREFIX=/\n\n$ npm install --save @ionic-native/deeplinks\n```\n\n### Create navigation links to app pages \n\n```bash\n$ ionic generate page aboutus --no-module // it creates AboutusPage in your pages folder\n```\n\n### Copy the below code to your app.component.ts\n\n```\n     constructor(platform: Platform, statusBar: StatusBar, splashScreen: SplashScreen, public deeplink: Deeplinks) {\n        platform.ready().then(() =\u003e {\n            statusBar.styleDefault();\n            splashScreen.hide();\n\n            // THIS BELOW CODE WILL CHECK FOR DEEPLINKS FROM OTHER APPS OR BROWSER \n            this.deeplink.routeWithNavController(this.navChild, {\n                '/about-us': AboutusPage,\n                '/universal-links-test': AboutusPage\n            }).subscribe((match) =\u003e {\n                console.log('Successfully routed', match);\n            }, (nomatch) =\u003e {\n                console.warn('Unmatched Route', nomatch);\n            });\n        });\n    }\n```\n\n# ACCESSLINK FROM ANOTHER APP OR WEBSITE LINK \n\n```\n  \u003cp\u003e\n    About us \u003ca href=\"https://driftycode.com/about-us\"\u003eAbout us\u003c/a\u003e\n  \u003c/p\u003e\n```\n  \n### Screenshots\n\u003cimg src=\"routing.png\" height=\"400em\" /\u003e \n\u003cimg src=\"link-url.png\" height=\"400em\" /\u003e \n\n### Created \u0026 Maintained By\n\n[Nagendra Badiganti](https://github.com/nbadiganti) ([@nagendrabadigan](https://www.twitter.com/nagendrabadigan)) \n([Insta](https://www.instagram.com/nbadiganti))\n\n\u003e If you found this project helpful or you learned something from the source code and want to thank me, consider buying me a cup of :coffee:\n\u003e\n\u003e * [PayPal](https://www.paypal.me/codingcursor/)\n\n# License\n\n    Copyright 2018 Nagendra Badiganti\n\n    Licensed under the Apache License, Version 2.0 (the \"License\");\n    you may not use this file except in compliance with the License.\n    You may obtain a copy of the License at\n\n       http://www.apache.org/licenses/LICENSE-2.0\n\n    Unless required by applicable law or agreed to in writing, software\n    distributed under the License is distributed on an \"AS IS\" BASIS,\n    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n    See the License for the specific language governing permissions and\n    limitations under the License.\n\n## More info\n\nFor help getting started with IONIC and deeplinks, \n[documentation](https://ionicframework.com/docs/native/deeplinks/).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnbadiganti%2Fionic-deeplink","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fnbadiganti%2Fionic-deeplink","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnbadiganti%2Fionic-deeplink/lists"}