-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathplugin.xml
More file actions
48 lines (42 loc) · 1.99 KB
/
plugin.xml
File metadata and controls
48 lines (42 loc) · 1.99 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
<?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="metamap-cordova-plugin" version="0.0.4">
<name>MetaMapGlobalIDSDK</name>
<js-module name="MetaMapGlobalIDSDK" src="www/MetaMapGlobalIDSDK.js">
<clobbers target="cordova.plugins.MetaMapGlobalIDSDK" />
</js-module>
<platform name="android">
<config-file parent="/*" target="res/xml/config.xml">
<feature name="MetaMapGlobalIDSDK">
<param name="android-package"
value="com.cordova.plugin.metaMapglobalidsdk.MetaMapGlobalIDSDK" />
<param name="onload" value="true" />
</feature>
</config-file>
<config-file parent="/*" target="AndroidManifest.xml" />
<source-file src="src/android/MetaMapGlobalIDSDK.java"
target-dir="src/com/cordova/plugin/metaMapglobalidsdk" />
<framework custom="true" src="src/android/build.gradle" type="gradleReference" />
<config-file parent="/manifest/application" target="AndroidManifest.xml"></config-file>
</platform>
<platform name="ios">
<js-module name="MetaMapGlobalIDSDK" src="www/MetaMapGlobalIDSDK.js">
<clobbers target="MetaMapGlobalIDSDK" />
</js-module>
<config-file parent="/*" target="config.xml">
<feature name="MetaMapGlobalIDSDK">
<preference name="deployment-target" value="13.0" />
<param name="ios-package" value="MetaMapGlobalIDSDK" />
<param name="onload" value="true" />
</feature>
</config-file>
<source-file src="src/ios/MetaMapGlobalIDSDK.m" />
<podspec>
<config>
<source url="https://cdn.cocoapods.org/" />
</config>
<pods use-frameworks="true">
<pod name="MetaMapSDK" spec="3.23.16" />
</pods>
</podspec>
</platform>
</plugin>