-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplugin.xml
More file actions
36 lines (31 loc) · 1.4 KB
/
plugin.xml
File metadata and controls
36 lines (31 loc) · 1.4 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
<?xml version="1.0" encoding="UTF-8"?>
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0" xmlns:android="http://schemas.android.com/apk/res/android" id="mathcalculator-cordova-plugin" version="0.0.1">
<name>MathCalculator</name>
<js-module name="MathCalculator" src="www/MathCalculator.js">
<clobbers target="MathCalculator" />
</js-module>
<engines>
<engine name="cordova" version=">=6.4.0" />
<engine name="cordova-ios" version=">=4.3.0" />
<engine name="cordova-android" version=">=5.1.0" />
<engine name="apple-xcode" version=">=8.0.0" />
<engine name="apple-ios" version=">=7.0.0" />
</engines>
<platform name="android">
<config-file parent="/*" target="res/xml/config.xml">
<feature name="MathCalculator">
<param name="android-package" value="mathcalculator.cordova.plugin.MathCalculator" />
</feature>
</config-file>
<config-file parent="/*" target="AndroidManifest.xml" />
<source-file src="src/android/MathCalculator.java" target-dir="src/mathcalculator/cordova/plugin/MathCalculator" />
</platform>
<platform name="ios">
<config-file parent="/*" target="config.xml">
<feature name="MathCalculator">
<param name="ios-package" value="MathCalculator" />
</feature>
</config-file>
<source-file src="src/ios/MathCalculator.m" />
</platform>
</plugin>