| 15747 |
anikendra |
1 |
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
2 |
<!--
|
|
|
3 |
Licensed to the Apache Software Foundation (ASF) under one
|
|
|
4 |
or more contributor license agreements. See the NOTICE file
|
|
|
5 |
distributed with this work for additional information
|
|
|
6 |
regarding copyright ownership. The ASF licenses this file
|
|
|
7 |
to you under the Apache License, Version 2.0 (the
|
|
|
8 |
"License"); you may not use this file except in compliance
|
|
|
9 |
with the License. You may obtain a copy of the License at
|
|
|
10 |
|
|
|
11 |
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
12 |
|
|
|
13 |
Unless required by applicable law or agreed to in writing,
|
|
|
14 |
software distributed under the License is distributed on an
|
|
|
15 |
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
|
16 |
KIND, either express or implied. See the License for the
|
|
|
17 |
specific language governing permissions and limitations
|
|
|
18 |
under the License.
|
|
|
19 |
-->
|
|
|
20 |
|
|
|
21 |
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0"
|
|
|
22 |
id="org.apache.cordova.console"
|
|
|
23 |
version="0.2.13">
|
|
|
24 |
|
|
|
25 |
<name>Console</name>
|
|
|
26 |
<description>Cordova Console Plugin</description>
|
|
|
27 |
<license>Apache 2.0</license>
|
|
|
28 |
<keywords>cordova,console</keywords>
|
|
|
29 |
<repo>https://git-wip-us.apache.org/repos/asf/cordova-plugin-console.git</repo>
|
|
|
30 |
<issue>https://issues.apache.org/jira/browse/CB/component/12320644</issue>
|
|
|
31 |
|
|
|
32 |
<!-- ios -->
|
|
|
33 |
<platform name="ios">
|
|
|
34 |
|
|
|
35 |
<config-file target="config.xml" parent="/*">
|
|
|
36 |
<feature name="Console">
|
|
|
37 |
<param name="ios-package" value="CDVLogger"/>
|
|
|
38 |
</feature>
|
|
|
39 |
</config-file>
|
|
|
40 |
|
|
|
41 |
<js-module src="www/console-via-logger.js" name="console">
|
|
|
42 |
<clobbers target="console" />
|
|
|
43 |
</js-module>
|
|
|
44 |
|
|
|
45 |
<js-module src="www/logger.js" name="logger">
|
|
|
46 |
<clobbers target="cordova.logger" />
|
|
|
47 |
</js-module>
|
|
|
48 |
|
|
|
49 |
<header-file src="src/ios/CDVLogger.h" />
|
|
|
50 |
<source-file src="src/ios/CDVLogger.m" />
|
|
|
51 |
|
|
|
52 |
</platform>
|
|
|
53 |
|
|
|
54 |
<!-- ubuntu -->
|
|
|
55 |
<platform name="ubuntu">
|
|
|
56 |
<js-module src="www/console-via-logger.js" name="console">
|
|
|
57 |
<clobbers target="console" />
|
|
|
58 |
</js-module>
|
|
|
59 |
|
|
|
60 |
<js-module src="www/logger.js" name="logger">
|
|
|
61 |
<clobbers target="cordova.logger" />
|
|
|
62 |
</js-module>
|
|
|
63 |
|
|
|
64 |
<header-file src="src/ubuntu/console.h" />
|
|
|
65 |
<source-file src="src/ubuntu/console.cpp" />
|
|
|
66 |
|
|
|
67 |
</platform>
|
|
|
68 |
|
|
|
69 |
<!-- wp7 -->
|
|
|
70 |
<platform name="wp7">
|
|
|
71 |
<config-file target="config.xml" parent="/*">
|
|
|
72 |
<feature name="Console">
|
|
|
73 |
<param name="wp-package" value="DebugConsole"/>
|
|
|
74 |
</feature>
|
|
|
75 |
</config-file>
|
|
|
76 |
|
|
|
77 |
<js-module src="www/console-via-logger.js" name="console">
|
|
|
78 |
<clobbers target="console" />
|
|
|
79 |
</js-module>
|
|
|
80 |
|
|
|
81 |
<js-module src="www/logger.js" name="logger">
|
|
|
82 |
<clobbers target="cordova.logger" />
|
|
|
83 |
</js-module>
|
|
|
84 |
|
|
|
85 |
<source-file src="src/wp/DebugConsole.cs" />
|
|
|
86 |
</platform>
|
|
|
87 |
|
|
|
88 |
<!-- wp8 -->
|
|
|
89 |
<platform name="wp8">
|
|
|
90 |
<config-file target="config.xml" parent="/*">
|
|
|
91 |
<feature name="Console">
|
|
|
92 |
<param name="wp-package" value="DebugConsole"/>
|
|
|
93 |
</feature>
|
|
|
94 |
</config-file>
|
|
|
95 |
|
|
|
96 |
<js-module src="www/console-via-logger.js" name="console">
|
|
|
97 |
<clobbers target="console" />
|
|
|
98 |
</js-module>
|
|
|
99 |
|
|
|
100 |
<js-module src="www/logger.js" name="logger">
|
|
|
101 |
<clobbers target="cordova.logger" />
|
|
|
102 |
</js-module>
|
|
|
103 |
|
|
|
104 |
<source-file src="src/wp/DebugConsole.cs" />
|
|
|
105 |
</platform>
|
|
|
106 |
|
|
|
107 |
<!-- windows8 -->
|
|
|
108 |
<platform name="windows8">
|
|
|
109 |
<js-module src="www/logger.js" name="logger">
|
|
|
110 |
<clobbers target="cordova.logger" />
|
|
|
111 |
</js-module>
|
|
|
112 |
<js-module src="www/console-via-logger.js" name="console">
|
|
|
113 |
<clobbers target="console" />
|
|
|
114 |
</js-module>
|
|
|
115 |
|
|
|
116 |
</platform>
|
|
|
117 |
|
|
|
118 |
</plugin>
|