-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplugin.xml
More file actions
38 lines (32 loc) · 1.32 KB
/
plugin.xml
File metadata and controls
38 lines (32 loc) · 1.32 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
<?xml version="1.0" encoding="UTF-8"?>
<plugin xmlns="http://www.phonegap.com/ns/plugins/1.0"
id="com.mosa.plugin.BatchIntegration"
version="0.1.0">
<name>BatchIntegration</name>
<description>Integration with Batch.com</description>
<license>MIT</license>
<keywords>phonegap,batch,push</keywords>
<js-module src="www/batch-integration.js" name="BatchIntegration">
<clobbers target="window.batch_integration" />
</js-module>
<!-- android -->
<platform name="android">
<config-file target="res/xml/config.xml" parent="/*">
<feature name="BatchIntegration">
<param name="android-package" value="com.mosa.plugin.BatchIntegration"/>
</feature>
</config-file>
<source-file src="src/android/com/mosa/plugin/BatchIntegration.java" target-dir="src/com/mosa/plugin" />
</platform>
<!-- ios -->
<platform name="ios">
<config-file target="config.xml" parent="/*">
<feature name="BatchIntegration">
<param name="ios-package" value="BatchIntegration" />
<param name="onload" value="true" />
</feature>
</config-file>
<header-file src="src/ios/BatchIntegration.h" />
<source-file src="src/ios/BatchIntegration.m" />
</platform>
</plugin>