├── CHANGELOG.md ├── LICENSE ├── README.md ├── package.json ├── plugin.xml ├── scripts ├── afterPrepareHook.js ├── beforePluginInstallHook.js ├── ios_swiftActivationHook.js ├── ios_swiftDeactivationHook.js └── lib │ ├── buildVersionUpdater.js │ ├── chcpConfigXmlReader.js │ ├── chcpConfigXmlWriter.js │ ├── logger.js │ ├── swiftHelper.js │ └── xmlHelper.js ├── src ├── android │ ├── chcp-localdev.gradle │ └── src │ │ └── com │ │ └── nordnetab │ │ └── chcp │ │ └── localdev │ │ ├── HotCodePushLocalDevPlugin.java │ │ └── config │ │ ├── ChcpXmlConfig.java │ │ ├── ChcpXmlConfigParser.java │ │ ├── DevelopmentOptions.java │ │ └── XmlTags.java └── ios │ ├── Config │ ├── HCPLDOptions.h │ ├── HCPLDOptions.m │ ├── HCPLDXmlConfig.h │ ├── HCPLDXmlConfig.m │ ├── HCPLDXmlConfigParser.h │ ├── HCPLDXmlConfigParser.m │ ├── HCPLDXmlTags.h │ └── HCPLDXmlTags.m │ ├── HCPLDPlugin.h │ ├── HCPLDPlugin.m │ └── SocketIOClientSwift │ ├── SSLSecurity.swift │ ├── SocketAckEmitter.swift │ ├── SocketAckManager.swift │ ├── SocketAnyEvent.swift │ ├── SocketClientManager.swift │ ├── SocketEngine.swift │ ├── SocketEngineClient.swift │ ├── SocketEnginePacketType.swift │ ├── SocketEnginePollable.swift │ ├── SocketEngineSpec.swift │ ├── SocketEngineWebsocket.swift │ ├── SocketEventHandler.swift │ ├── SocketExtensions.swift │ ├── SocketIOClient.swift │ ├── SocketIOClientConfiguration.swift │ ├── SocketIOClientOption.swift │ ├── SocketIOClientSpec.swift │ ├── SocketIOClientStatus.swift │ ├── SocketLogger.swift │ ├── SocketPacket.swift │ ├── SocketParsable.swift │ ├── SocketStringReader.swift │ ├── SocketTypes.swift │ └── WebSocket.swift └── www └── chcpLocalDev.js /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nordnet/cordova-hot-code-push-local-dev-addon/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nordnet/cordova-hot-code-push-local-dev-addon/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nordnet/cordova-hot-code-push-local-dev-addon/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nordnet/cordova-hot-code-push-local-dev-addon/HEAD/package.json -------------------------------------------------------------------------------- /plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nordnet/cordova-hot-code-push-local-dev-addon/HEAD/plugin.xml -------------------------------------------------------------------------------- /scripts/afterPrepareHook.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nordnet/cordova-hot-code-push-local-dev-addon/HEAD/scripts/afterPrepareHook.js -------------------------------------------------------------------------------- /scripts/beforePluginInstallHook.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nordnet/cordova-hot-code-push-local-dev-addon/HEAD/scripts/beforePluginInstallHook.js -------------------------------------------------------------------------------- /scripts/ios_swiftActivationHook.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nordnet/cordova-hot-code-push-local-dev-addon/HEAD/scripts/ios_swiftActivationHook.js -------------------------------------------------------------------------------- /scripts/ios_swiftDeactivationHook.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nordnet/cordova-hot-code-push-local-dev-addon/HEAD/scripts/ios_swiftDeactivationHook.js -------------------------------------------------------------------------------- /scripts/lib/buildVersionUpdater.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nordnet/cordova-hot-code-push-local-dev-addon/HEAD/scripts/lib/buildVersionUpdater.js -------------------------------------------------------------------------------- /scripts/lib/chcpConfigXmlReader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nordnet/cordova-hot-code-push-local-dev-addon/HEAD/scripts/lib/chcpConfigXmlReader.js -------------------------------------------------------------------------------- /scripts/lib/chcpConfigXmlWriter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nordnet/cordova-hot-code-push-local-dev-addon/HEAD/scripts/lib/chcpConfigXmlWriter.js -------------------------------------------------------------------------------- /scripts/lib/logger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nordnet/cordova-hot-code-push-local-dev-addon/HEAD/scripts/lib/logger.js -------------------------------------------------------------------------------- /scripts/lib/swiftHelper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nordnet/cordova-hot-code-push-local-dev-addon/HEAD/scripts/lib/swiftHelper.js -------------------------------------------------------------------------------- /scripts/lib/xmlHelper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nordnet/cordova-hot-code-push-local-dev-addon/HEAD/scripts/lib/xmlHelper.js -------------------------------------------------------------------------------- /src/android/chcp-localdev.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nordnet/cordova-hot-code-push-local-dev-addon/HEAD/src/android/chcp-localdev.gradle -------------------------------------------------------------------------------- /src/android/src/com/nordnetab/chcp/localdev/HotCodePushLocalDevPlugin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nordnet/cordova-hot-code-push-local-dev-addon/HEAD/src/android/src/com/nordnetab/chcp/localdev/HotCodePushLocalDevPlugin.java -------------------------------------------------------------------------------- /src/android/src/com/nordnetab/chcp/localdev/config/ChcpXmlConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nordnet/cordova-hot-code-push-local-dev-addon/HEAD/src/android/src/com/nordnetab/chcp/localdev/config/ChcpXmlConfig.java -------------------------------------------------------------------------------- /src/android/src/com/nordnetab/chcp/localdev/config/ChcpXmlConfigParser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nordnet/cordova-hot-code-push-local-dev-addon/HEAD/src/android/src/com/nordnetab/chcp/localdev/config/ChcpXmlConfigParser.java -------------------------------------------------------------------------------- /src/android/src/com/nordnetab/chcp/localdev/config/DevelopmentOptions.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nordnet/cordova-hot-code-push-local-dev-addon/HEAD/src/android/src/com/nordnetab/chcp/localdev/config/DevelopmentOptions.java -------------------------------------------------------------------------------- /src/android/src/com/nordnetab/chcp/localdev/config/XmlTags.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nordnet/cordova-hot-code-push-local-dev-addon/HEAD/src/android/src/com/nordnetab/chcp/localdev/config/XmlTags.java -------------------------------------------------------------------------------- /src/ios/Config/HCPLDOptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nordnet/cordova-hot-code-push-local-dev-addon/HEAD/src/ios/Config/HCPLDOptions.h -------------------------------------------------------------------------------- /src/ios/Config/HCPLDOptions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nordnet/cordova-hot-code-push-local-dev-addon/HEAD/src/ios/Config/HCPLDOptions.m -------------------------------------------------------------------------------- /src/ios/Config/HCPLDXmlConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nordnet/cordova-hot-code-push-local-dev-addon/HEAD/src/ios/Config/HCPLDXmlConfig.h -------------------------------------------------------------------------------- /src/ios/Config/HCPLDXmlConfig.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nordnet/cordova-hot-code-push-local-dev-addon/HEAD/src/ios/Config/HCPLDXmlConfig.m -------------------------------------------------------------------------------- /src/ios/Config/HCPLDXmlConfigParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nordnet/cordova-hot-code-push-local-dev-addon/HEAD/src/ios/Config/HCPLDXmlConfigParser.h -------------------------------------------------------------------------------- /src/ios/Config/HCPLDXmlConfigParser.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nordnet/cordova-hot-code-push-local-dev-addon/HEAD/src/ios/Config/HCPLDXmlConfigParser.m -------------------------------------------------------------------------------- /src/ios/Config/HCPLDXmlTags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nordnet/cordova-hot-code-push-local-dev-addon/HEAD/src/ios/Config/HCPLDXmlTags.h -------------------------------------------------------------------------------- /src/ios/Config/HCPLDXmlTags.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nordnet/cordova-hot-code-push-local-dev-addon/HEAD/src/ios/Config/HCPLDXmlTags.m -------------------------------------------------------------------------------- /src/ios/HCPLDPlugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nordnet/cordova-hot-code-push-local-dev-addon/HEAD/src/ios/HCPLDPlugin.h -------------------------------------------------------------------------------- /src/ios/HCPLDPlugin.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nordnet/cordova-hot-code-push-local-dev-addon/HEAD/src/ios/HCPLDPlugin.m -------------------------------------------------------------------------------- /src/ios/SocketIOClientSwift/SSLSecurity.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nordnet/cordova-hot-code-push-local-dev-addon/HEAD/src/ios/SocketIOClientSwift/SSLSecurity.swift -------------------------------------------------------------------------------- /src/ios/SocketIOClientSwift/SocketAckEmitter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nordnet/cordova-hot-code-push-local-dev-addon/HEAD/src/ios/SocketIOClientSwift/SocketAckEmitter.swift -------------------------------------------------------------------------------- /src/ios/SocketIOClientSwift/SocketAckManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nordnet/cordova-hot-code-push-local-dev-addon/HEAD/src/ios/SocketIOClientSwift/SocketAckManager.swift -------------------------------------------------------------------------------- /src/ios/SocketIOClientSwift/SocketAnyEvent.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nordnet/cordova-hot-code-push-local-dev-addon/HEAD/src/ios/SocketIOClientSwift/SocketAnyEvent.swift -------------------------------------------------------------------------------- /src/ios/SocketIOClientSwift/SocketClientManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nordnet/cordova-hot-code-push-local-dev-addon/HEAD/src/ios/SocketIOClientSwift/SocketClientManager.swift -------------------------------------------------------------------------------- /src/ios/SocketIOClientSwift/SocketEngine.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nordnet/cordova-hot-code-push-local-dev-addon/HEAD/src/ios/SocketIOClientSwift/SocketEngine.swift -------------------------------------------------------------------------------- /src/ios/SocketIOClientSwift/SocketEngineClient.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nordnet/cordova-hot-code-push-local-dev-addon/HEAD/src/ios/SocketIOClientSwift/SocketEngineClient.swift -------------------------------------------------------------------------------- /src/ios/SocketIOClientSwift/SocketEnginePacketType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nordnet/cordova-hot-code-push-local-dev-addon/HEAD/src/ios/SocketIOClientSwift/SocketEnginePacketType.swift -------------------------------------------------------------------------------- /src/ios/SocketIOClientSwift/SocketEnginePollable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nordnet/cordova-hot-code-push-local-dev-addon/HEAD/src/ios/SocketIOClientSwift/SocketEnginePollable.swift -------------------------------------------------------------------------------- /src/ios/SocketIOClientSwift/SocketEngineSpec.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nordnet/cordova-hot-code-push-local-dev-addon/HEAD/src/ios/SocketIOClientSwift/SocketEngineSpec.swift -------------------------------------------------------------------------------- /src/ios/SocketIOClientSwift/SocketEngineWebsocket.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nordnet/cordova-hot-code-push-local-dev-addon/HEAD/src/ios/SocketIOClientSwift/SocketEngineWebsocket.swift -------------------------------------------------------------------------------- /src/ios/SocketIOClientSwift/SocketEventHandler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nordnet/cordova-hot-code-push-local-dev-addon/HEAD/src/ios/SocketIOClientSwift/SocketEventHandler.swift -------------------------------------------------------------------------------- /src/ios/SocketIOClientSwift/SocketExtensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nordnet/cordova-hot-code-push-local-dev-addon/HEAD/src/ios/SocketIOClientSwift/SocketExtensions.swift -------------------------------------------------------------------------------- /src/ios/SocketIOClientSwift/SocketIOClient.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nordnet/cordova-hot-code-push-local-dev-addon/HEAD/src/ios/SocketIOClientSwift/SocketIOClient.swift -------------------------------------------------------------------------------- /src/ios/SocketIOClientSwift/SocketIOClientConfiguration.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nordnet/cordova-hot-code-push-local-dev-addon/HEAD/src/ios/SocketIOClientSwift/SocketIOClientConfiguration.swift -------------------------------------------------------------------------------- /src/ios/SocketIOClientSwift/SocketIOClientOption.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nordnet/cordova-hot-code-push-local-dev-addon/HEAD/src/ios/SocketIOClientSwift/SocketIOClientOption.swift -------------------------------------------------------------------------------- /src/ios/SocketIOClientSwift/SocketIOClientSpec.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nordnet/cordova-hot-code-push-local-dev-addon/HEAD/src/ios/SocketIOClientSwift/SocketIOClientSpec.swift -------------------------------------------------------------------------------- /src/ios/SocketIOClientSwift/SocketIOClientStatus.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nordnet/cordova-hot-code-push-local-dev-addon/HEAD/src/ios/SocketIOClientSwift/SocketIOClientStatus.swift -------------------------------------------------------------------------------- /src/ios/SocketIOClientSwift/SocketLogger.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nordnet/cordova-hot-code-push-local-dev-addon/HEAD/src/ios/SocketIOClientSwift/SocketLogger.swift -------------------------------------------------------------------------------- /src/ios/SocketIOClientSwift/SocketPacket.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nordnet/cordova-hot-code-push-local-dev-addon/HEAD/src/ios/SocketIOClientSwift/SocketPacket.swift -------------------------------------------------------------------------------- /src/ios/SocketIOClientSwift/SocketParsable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nordnet/cordova-hot-code-push-local-dev-addon/HEAD/src/ios/SocketIOClientSwift/SocketParsable.swift -------------------------------------------------------------------------------- /src/ios/SocketIOClientSwift/SocketStringReader.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nordnet/cordova-hot-code-push-local-dev-addon/HEAD/src/ios/SocketIOClientSwift/SocketStringReader.swift -------------------------------------------------------------------------------- /src/ios/SocketIOClientSwift/SocketTypes.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nordnet/cordova-hot-code-push-local-dev-addon/HEAD/src/ios/SocketIOClientSwift/SocketTypes.swift -------------------------------------------------------------------------------- /src/ios/SocketIOClientSwift/WebSocket.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nordnet/cordova-hot-code-push-local-dev-addon/HEAD/src/ios/SocketIOClientSwift/WebSocket.swift -------------------------------------------------------------------------------- /www/chcpLocalDev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nordnet/cordova-hot-code-push-local-dev-addon/HEAD/www/chcpLocalDev.js --------------------------------------------------------------------------------