├── CHANGELOG.md ├── LICENSE ├── README.md ├── docs └── images │ ├── app-associated-domains.jpg │ ├── app-id-team-prefix.jpg │ ├── app-id.jpg │ ├── branch-io.jpg │ └── developer-console.jpg ├── hooks ├── afterPrepareHook.js ├── beforePluginInstallHook.js ├── iosBeforePrepareHook.js └── lib │ ├── android │ ├── manifestWriter.js │ └── webSiteHook.js │ ├── configXmlHelper.js │ ├── configXmlParser.js │ ├── ios │ ├── appleAppSiteAssociationFile.js │ ├── projectEntitlements.js │ └── xcodePreferences.js │ └── xmlHelper.js ├── package.json ├── plugin.xml ├── src ├── android │ └── com │ │ └── nordnetab │ │ └── cordova │ │ └── ul │ │ ├── UniversalLinksPlugin.java │ │ ├── js │ │ └── JSAction.java │ │ ├── model │ │ ├── JSMessage.java │ │ ├── ULHost.java │ │ └── ULPath.java │ │ └── parser │ │ ├── ULConfigXmlParser.java │ │ └── XmlTags.java └── ios │ ├── AppDelegate+CULPlugin.h │ ├── AppDelegate+CULPlugin.m │ ├── CULPlugin.h │ ├── CULPlugin.m │ ├── JS │ ├── CDVInvokedUrlCommand+CULPlugin.h │ ├── CDVInvokedUrlCommand+CULPlugin.m │ ├── CDVPluginResult+CULPlugin.h │ └── CDVPluginResult+CULPlugin.m │ ├── Model │ ├── CULHost.h │ ├── CULHost.m │ ├── CULPath.h │ └── CULPath.m │ ├── Parser │ ├── JSON │ │ ├── CULConfigJsonParser.h │ │ └── CULConfigJsonParser.m │ └── XML │ │ ├── CULConfigXmlParser.h │ │ ├── CULConfigXmlParser.m │ │ ├── CULXmlTags.h │ │ └── CULXmlTags.m │ └── Utils │ ├── NSBundle+CULPlugin.h │ └── NSBundle+CULPlugin.m ├── ul_web_hooks └── android_web_hook_tpl.html └── www └── universal_links.js /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nordnet/cordova-universal-links-plugin/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nordnet/cordova-universal-links-plugin/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nordnet/cordova-universal-links-plugin/HEAD/README.md -------------------------------------------------------------------------------- /docs/images/app-associated-domains.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nordnet/cordova-universal-links-plugin/HEAD/docs/images/app-associated-domains.jpg -------------------------------------------------------------------------------- /docs/images/app-id-team-prefix.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nordnet/cordova-universal-links-plugin/HEAD/docs/images/app-id-team-prefix.jpg -------------------------------------------------------------------------------- /docs/images/app-id.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nordnet/cordova-universal-links-plugin/HEAD/docs/images/app-id.jpg -------------------------------------------------------------------------------- /docs/images/branch-io.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nordnet/cordova-universal-links-plugin/HEAD/docs/images/branch-io.jpg -------------------------------------------------------------------------------- /docs/images/developer-console.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nordnet/cordova-universal-links-plugin/HEAD/docs/images/developer-console.jpg -------------------------------------------------------------------------------- /hooks/afterPrepareHook.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nordnet/cordova-universal-links-plugin/HEAD/hooks/afterPrepareHook.js -------------------------------------------------------------------------------- /hooks/beforePluginInstallHook.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nordnet/cordova-universal-links-plugin/HEAD/hooks/beforePluginInstallHook.js -------------------------------------------------------------------------------- /hooks/iosBeforePrepareHook.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nordnet/cordova-universal-links-plugin/HEAD/hooks/iosBeforePrepareHook.js -------------------------------------------------------------------------------- /hooks/lib/android/manifestWriter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nordnet/cordova-universal-links-plugin/HEAD/hooks/lib/android/manifestWriter.js -------------------------------------------------------------------------------- /hooks/lib/android/webSiteHook.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nordnet/cordova-universal-links-plugin/HEAD/hooks/lib/android/webSiteHook.js -------------------------------------------------------------------------------- /hooks/lib/configXmlHelper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nordnet/cordova-universal-links-plugin/HEAD/hooks/lib/configXmlHelper.js -------------------------------------------------------------------------------- /hooks/lib/configXmlParser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nordnet/cordova-universal-links-plugin/HEAD/hooks/lib/configXmlParser.js -------------------------------------------------------------------------------- /hooks/lib/ios/appleAppSiteAssociationFile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nordnet/cordova-universal-links-plugin/HEAD/hooks/lib/ios/appleAppSiteAssociationFile.js -------------------------------------------------------------------------------- /hooks/lib/ios/projectEntitlements.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nordnet/cordova-universal-links-plugin/HEAD/hooks/lib/ios/projectEntitlements.js -------------------------------------------------------------------------------- /hooks/lib/ios/xcodePreferences.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nordnet/cordova-universal-links-plugin/HEAD/hooks/lib/ios/xcodePreferences.js -------------------------------------------------------------------------------- /hooks/lib/xmlHelper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nordnet/cordova-universal-links-plugin/HEAD/hooks/lib/xmlHelper.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nordnet/cordova-universal-links-plugin/HEAD/package.json -------------------------------------------------------------------------------- /plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nordnet/cordova-universal-links-plugin/HEAD/plugin.xml -------------------------------------------------------------------------------- /src/android/com/nordnetab/cordova/ul/UniversalLinksPlugin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nordnet/cordova-universal-links-plugin/HEAD/src/android/com/nordnetab/cordova/ul/UniversalLinksPlugin.java -------------------------------------------------------------------------------- /src/android/com/nordnetab/cordova/ul/js/JSAction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nordnet/cordova-universal-links-plugin/HEAD/src/android/com/nordnetab/cordova/ul/js/JSAction.java -------------------------------------------------------------------------------- /src/android/com/nordnetab/cordova/ul/model/JSMessage.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nordnet/cordova-universal-links-plugin/HEAD/src/android/com/nordnetab/cordova/ul/model/JSMessage.java -------------------------------------------------------------------------------- /src/android/com/nordnetab/cordova/ul/model/ULHost.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nordnet/cordova-universal-links-plugin/HEAD/src/android/com/nordnetab/cordova/ul/model/ULHost.java -------------------------------------------------------------------------------- /src/android/com/nordnetab/cordova/ul/model/ULPath.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nordnet/cordova-universal-links-plugin/HEAD/src/android/com/nordnetab/cordova/ul/model/ULPath.java -------------------------------------------------------------------------------- /src/android/com/nordnetab/cordova/ul/parser/ULConfigXmlParser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nordnet/cordova-universal-links-plugin/HEAD/src/android/com/nordnetab/cordova/ul/parser/ULConfigXmlParser.java -------------------------------------------------------------------------------- /src/android/com/nordnetab/cordova/ul/parser/XmlTags.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nordnet/cordova-universal-links-plugin/HEAD/src/android/com/nordnetab/cordova/ul/parser/XmlTags.java -------------------------------------------------------------------------------- /src/ios/AppDelegate+CULPlugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nordnet/cordova-universal-links-plugin/HEAD/src/ios/AppDelegate+CULPlugin.h -------------------------------------------------------------------------------- /src/ios/AppDelegate+CULPlugin.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nordnet/cordova-universal-links-plugin/HEAD/src/ios/AppDelegate+CULPlugin.m -------------------------------------------------------------------------------- /src/ios/CULPlugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nordnet/cordova-universal-links-plugin/HEAD/src/ios/CULPlugin.h -------------------------------------------------------------------------------- /src/ios/CULPlugin.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nordnet/cordova-universal-links-plugin/HEAD/src/ios/CULPlugin.m -------------------------------------------------------------------------------- /src/ios/JS/CDVInvokedUrlCommand+CULPlugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nordnet/cordova-universal-links-plugin/HEAD/src/ios/JS/CDVInvokedUrlCommand+CULPlugin.h -------------------------------------------------------------------------------- /src/ios/JS/CDVInvokedUrlCommand+CULPlugin.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nordnet/cordova-universal-links-plugin/HEAD/src/ios/JS/CDVInvokedUrlCommand+CULPlugin.m -------------------------------------------------------------------------------- /src/ios/JS/CDVPluginResult+CULPlugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nordnet/cordova-universal-links-plugin/HEAD/src/ios/JS/CDVPluginResult+CULPlugin.h -------------------------------------------------------------------------------- /src/ios/JS/CDVPluginResult+CULPlugin.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nordnet/cordova-universal-links-plugin/HEAD/src/ios/JS/CDVPluginResult+CULPlugin.m -------------------------------------------------------------------------------- /src/ios/Model/CULHost.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nordnet/cordova-universal-links-plugin/HEAD/src/ios/Model/CULHost.h -------------------------------------------------------------------------------- /src/ios/Model/CULHost.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nordnet/cordova-universal-links-plugin/HEAD/src/ios/Model/CULHost.m -------------------------------------------------------------------------------- /src/ios/Model/CULPath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nordnet/cordova-universal-links-plugin/HEAD/src/ios/Model/CULPath.h -------------------------------------------------------------------------------- /src/ios/Model/CULPath.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nordnet/cordova-universal-links-plugin/HEAD/src/ios/Model/CULPath.m -------------------------------------------------------------------------------- /src/ios/Parser/JSON/CULConfigJsonParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nordnet/cordova-universal-links-plugin/HEAD/src/ios/Parser/JSON/CULConfigJsonParser.h -------------------------------------------------------------------------------- /src/ios/Parser/JSON/CULConfigJsonParser.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nordnet/cordova-universal-links-plugin/HEAD/src/ios/Parser/JSON/CULConfigJsonParser.m -------------------------------------------------------------------------------- /src/ios/Parser/XML/CULConfigXmlParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nordnet/cordova-universal-links-plugin/HEAD/src/ios/Parser/XML/CULConfigXmlParser.h -------------------------------------------------------------------------------- /src/ios/Parser/XML/CULConfigXmlParser.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nordnet/cordova-universal-links-plugin/HEAD/src/ios/Parser/XML/CULConfigXmlParser.m -------------------------------------------------------------------------------- /src/ios/Parser/XML/CULXmlTags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nordnet/cordova-universal-links-plugin/HEAD/src/ios/Parser/XML/CULXmlTags.h -------------------------------------------------------------------------------- /src/ios/Parser/XML/CULXmlTags.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nordnet/cordova-universal-links-plugin/HEAD/src/ios/Parser/XML/CULXmlTags.m -------------------------------------------------------------------------------- /src/ios/Utils/NSBundle+CULPlugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nordnet/cordova-universal-links-plugin/HEAD/src/ios/Utils/NSBundle+CULPlugin.h -------------------------------------------------------------------------------- /src/ios/Utils/NSBundle+CULPlugin.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nordnet/cordova-universal-links-plugin/HEAD/src/ios/Utils/NSBundle+CULPlugin.m -------------------------------------------------------------------------------- /ul_web_hooks/android_web_hook_tpl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nordnet/cordova-universal-links-plugin/HEAD/ul_web_hooks/android_web_hook_tpl.html -------------------------------------------------------------------------------- /www/universal_links.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nordnet/cordova-universal-links-plugin/HEAD/www/universal_links.js --------------------------------------------------------------------------------