This repository was archived by the owner on Apr 22, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathplugin.xml
More file actions
45 lines (32 loc) · 1.21 KB
/
plugin.xml
File metadata and controls
45 lines (32 loc) · 1.21 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
<?xml version="1.0" encoding="UTF-8"?>
<plugin xmlns="http://www.phonegap.com/ns/plugins/1.0"
id="com.contentecontent.cordova.plugins.mapKit"
version="1.0.0">
<name>MapKit</name>
<description>MapKit plugin for iOS. Cordova 3.x.x</description>
<keywords>maps, ios</keywords>
<license>MIT License</license>
<author>Ronald Klip (github.com/RonaldPK)</author>
<engines>
<engine name="cordova" version=">=3.0.0" />
</engines>
<!-- ios -->
<platform name="ios">
<config-file target="config.xml" parent="/*">
<feature name="MapKitView">
<param name="ios-package" value="MapKitView"/>
</feature>
</config-file>
<js-module src="www/MapKit.js" name="MapKit">
<clobbers target="plugins.mapKit" />
</js-module>
<header-file src="src/ios/AsyncImageView.h" />
<header-file src="src/ios/CDVAnnotation.h" />
<header-file src="src/ios/MapKit.h" />
<source-file src="src/ios/AsyncImageView.m" />
<source-file src="src/ios/CDVAnnotation.m" />
<source-file src="src/ios/MapKit.m" />
<framework src="MapKit.framework" />
<asset src="www/map-close-button.png" target="map-close-button.png" />
</platform>
</plugin>