This repository has been archived by the owner on Oct 1, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 30
/
plugin.xml
109 lines (89 loc) · 6.36 KB
/
plugin.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
<?xml version="1.0" encoding="UTF-8"?>
<plugin id="cordova-hot-code-push-local-dev-addon" version="0.4.2" xmlns="http://apache.org/cordova/ns/plugins/1.0">
<name>Hot Code Push Local Development Addon</name>
<description>Cordova plugin that add's local development feature to the Hot Code Push plugin</description>
<license>MIT</license>
<keywords>cordova,code,update</keywords>
<repo>https://github.com/nordnet/cordova-hot-code-push-local-dev-addon</repo>
<issue>https://github.com/nordnet/cordova-hot-code-push-local-dev-addon/issues</issue>
<engines>
<engine name="cordova-ios" version=">=3.8"></engine>
<engine name="cordova-android" version=">=4"></engine>
<engine name="cordova-plugman" version=">=4.2.0"></engine>
<!-- needed for gradleReference support -->
</engines>
<!-- JavaScrip Library Sources -->
<js-module name="chcpLocalDev" src="www/chcpLocalDev.js">
<clobbers target="chcpLocalDev"/>
</js-module>
<!-- Hooks -->
<hook type="after_prepare" src="scripts/afterPrepareHook.js" />
<hook type="before_plugin_install" src="scripts/beforePluginInstallHook.js" />
<platform name="ios">
<!-- swift activation hook -->
<hook src="scripts/ios_swiftActivationHook.js" type="after_prepare"/>
<hook src="scripts/ios_swiftDeactivationHook.js" type="before_plugin_uninstall" />
<!-- Plugin inclusion in Cordova config.xml -->
<config-file parent="/*" target="config.xml">
<feature name="HotCodePushLocalDevMode">
<param name="ios-package" value="HCPLDPlugin"/>
<param name="onload" value="true"/>
</feature>
</config-file>
<!-- Plugin source code -->
<source-file src="src/ios/HCPLDPlugin.m"/>
<header-file src="src/ios/HCPLDPlugin.h"/>
<!-- Config folder source code -->
<source-file src="src/ios/Config/HCPLDOptions.m" target-dir="Config/"/>
<header-file src="src/ios/Config/HCPLDOptions.h" target-dir="Config/"/>
<source-file src="src/ios/Config/HCPLDXmlConfig.m" target-dir="Config/"/>
<header-file src="src/ios/Config/HCPLDXmlConfig.h" target-dir="Config/"/>
<source-file src="src/ios/Config/HCPLDXmlConfigParser.m" target-dir="Config/"/>
<header-file src="src/ios/Config/HCPLDXmlConfigParser.h" target-dir="Config/"/>
<source-file src="src/ios/Config/HCPLDXmlTags.m" target-dir="Config/"/>
<header-file src="src/ios/Config/HCPLDXmlTags.h" target-dir="Config/"/>
<!-- Socket.IO sources -->
<source-file src="src/ios/SocketIOClientSwift/SocketAckEmitter.swift" target-dir="SocketIOClientSwift/"/>
<source-file src="src/ios/SocketIOClientSwift/SocketAckManager.swift" target-dir="SocketIOClientSwift/"/>
<source-file src="src/ios/SocketIOClientSwift/SocketAnyEvent.swift" target-dir="SocketIOClientSwift/"/>
<source-file src="src/ios/SocketIOClientSwift/SocketClientManager.swift" target-dir="SocketIOClientSwift/"/>
<source-file src="src/ios/SocketIOClientSwift/SocketEngine.swift" target-dir="SocketIOClientSwift/"/>
<source-file src="src/ios/SocketIOClientSwift/SocketEngineClient.swift" target-dir="SocketIOClientSwift/"/>
<source-file src="src/ios/SocketIOClientSwift/SocketEnginePacketType.swift" target-dir="SocketIOClientSwift/"/>
<source-file src="src/ios/SocketIOClientSwift/SocketEnginePollable.swift" target-dir="SocketIOClientSwift/"/>
<source-file src="src/ios/SocketIOClientSwift/SocketEngineSpec.swift" target-dir="SocketIOClientSwift/"/>
<source-file src="src/ios/SocketIOClientSwift/SocketEngineWebsocket.swift" target-dir="SocketIOClientSwift/"/>
<source-file src="src/ios/SocketIOClientSwift/SocketEventHandler.swift" target-dir="SocketIOClientSwift/"/>
<source-file src="src/ios/SocketIOClientSwift/SocketExtensions.swift" target-dir="SocketIOClientSwift/"/>
<source-file src="src/ios/SocketIOClientSwift/SocketIOClient.swift" target-dir="SocketIOClientSwift/"/>
<source-file src="src/ios/SocketIOClientSwift/SocketIOClientConfiguration.swift" target-dir="SocketIOClientSwift/"/>
<source-file src="src/ios/SocketIOClientSwift/SocketIOClientOption.swift" target-dir="SocketIOClientSwift/"/>
<source-file src="src/ios/SocketIOClientSwift/SocketIOClientSpec.swift" target-dir="SocketIOClientSwift/"/>
<source-file src="src/ios/SocketIOClientSwift/SocketIOClientStatus.swift" target-dir="SocketIOClientSwift/"/>
<source-file src="src/ios/SocketIOClientSwift/SocketLogger.swift" target-dir="SocketIOClientSwift/"/>
<source-file src="src/ios/SocketIOClientSwift/SocketPacket.swift" target-dir="SocketIOClientSwift/"/>
<source-file src="src/ios/SocketIOClientSwift/SocketParsable.swift" target-dir="SocketIOClientSwift/"/>
<source-file src="src/ios/SocketIOClientSwift/SocketStringReader.swift" target-dir="SocketIOClientSwift/"/>
<source-file src="src/ios/SocketIOClientSwift/SocketTypes.swift" target-dir="SocketIOClientSwift/"/>
<source-file src="src/ios/SocketIOClientSwift/SSLSecurity.swift" target-dir="SocketIOClientSwift/"/>
<source-file src="src/ios/SocketIOClientSwift/WebSocket.swift" target-dir="SocketIOClientSwift/"/>
</platform>
<platform name="android">
<!-- Plugin inclusion in Cordova config.xml -->
<config-file parent="/*" target="res/xml/config.xml">
<feature name="HotCodePushLocalDevMode">
<param name="android-package" value="com.nordnetab.chcp.localdev.HotCodePushLocalDevPlugin"/>
<param name="onload" value="true"/>
</feature>
</config-file>
<!-- Gradle config -->
<framework custom="true" src="src/android/chcp-localdev.gradle" type="gradleReference"/>
<!-- sources for package: com.nordnetab.chcp.localdev -->
<source-file src="src/android/src/com/nordnetab/chcp/localdev/HotCodePushLocalDevPlugin.java" target-dir="src/com/nordnetab/chcp/localdev"/>
<!-- sources for package: com.nordnetab.chcp.localdev.config -->
<source-file src="src/android/src/com/nordnetab/chcp/localdev/config/ChcpXmlConfig.java" target-dir="src/com/nordnetab/chcp/localdev/config"/>
<source-file src="src/android/src/com/nordnetab/chcp/localdev/config/ChcpXmlConfigParser.java" target-dir="src/com/nordnetab/chcp/localdev/config"/>
<source-file src="src/android/src/com/nordnetab/chcp/localdev/config/DevelopmentOptions.java" target-dir="src/com/nordnetab/chcp/localdev/config"/>
<source-file src="src/android/src/com/nordnetab/chcp/localdev/config/XmlTags.java" target-dir="src/com/nordnetab/chcp/localdev/config"/>
</platform>
</plugin>