-
Notifications
You must be signed in to change notification settings - Fork 0
/
plugin.xml
45 lines (39 loc) · 1.48 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
<?xml version="1.0" encoding="UTF-8" ?>
<!--
Copyright (c) 2015 The Chromium Authors. All rights reserved.
Use of this source code is governed by a BSD-style license that can be
found in the LICENSE file.
-->
<plugin xmlns="http://cordova.apache.org/ns/plugins/1.0"
id="cordova-plugin-chrome-apps-proxy"
version="0.1.1-dev">
<engines>
<engine name="cordova" version=">=3.0.0" />
</engines>
<name>Chrome Proxy API</name>
<keywords>chrome,proxy</keywords>
<repo>https://github.com/bemasc/cordova-plugin-chrome-apps-proxy.git</repo>
<issue>https://github.com/bemasc/cordova-plugin-chrome-apps-proxy/issues</issue>
<js-module src="proxy.js" name="proxy">
<clobbers target="chrome.proxy" />
</js-module>
<platform name="android">
<source-file src="src/android/ChromeProxy.java" target-dir="src/org/chromium" />
<config-file target="res/xml/config.xml" parent="/widget">
<feature name="ChromeProxy">
<param name="android-package" value="org.chromium.ChromeProxy"/>
</feature>
</config-file>
</platform>
<platform name="ios">
<header-file src="src/ios/ChromeProxy.h" />
<source-file src="src/ios/ChromeProxy.m" />
<header-file src="src/ios/ChromeProxyURLProtocol.h" />
<source-file src="src/ios/ChromeProxyURLProtocol.m" />
<config-file target="config.xml" parent="/*">
<feature name="ChromeProxy">
<param name="ios-package" value="ChromeProxy"/>
</feature>
</config-file>
</platform>
</plugin>