-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathplugin.xml
More file actions
48 lines (39 loc) · 1.31 KB
/
plugin.xml
File metadata and controls
48 lines (39 loc) · 1.31 KB
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
<?xml version="1.0" encoding="UTF-8"?>
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0"
id="com.marketo.plugin"
version="0.1.0">
<name>MarketoPlugin</name>
<description>Marketo plugin</description>
<license>Apache</license>
<keywords>phonegap, Marketo</keywords>
<js-module src="www/Marketo.js" name="MarketoPlugin">
<clobbers target="window.marketo" />
</js-module>
<!-- android -->
<platform name="android">
<config-file target="res/xml/config.xml" parent="/*">
<feature name="MarketoPlugin">
<param name="android-package" value="com.marketo.plugin.MarketoPlugin"/>
</feature>
</config-file>
<source-file src="src/android/MarketoPlugin.java" target-dir="src/com/marketo/plugin" />
<info>
Register your application at Marketo.com for further documentation.
</info>
</platform>
<!-- ios -->
<platform name="ios">
<config-file target="config.xml" parent="/*">
<feature name="MarketoPlugin">
<param name="ios-package" value="MarketoPlugin"/>
</feature>
</config-file>
<framework src="libsqlite3.dylib" />
<framework src="libs/ios/Marketo.framework" />
<header-file src="src/ios/MarketoPlugin.h"/>
<source-file src="src/ios/MarketoPlugin.m"/>
<info>
Register your application at Marketo.com for further documentation.
</info>
</platform>
</plugin>