forked from imhotep/MapKit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
plugin.xml
35 lines (28 loc) · 1.1 KB
/
plugin.xml
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
<?xml version="1.0" encoding="UTF-8"?>
<plugin xmlns="http://www.phonegap.com/ns/plugins/1.0"
id="com.cugesoft.cordova.plugins.mapkit"
version="0.9.3">
<name>MapKit</name>
<author>Hanzhi Dou</author>
<license>Apache</license>
<asset src="www/map-close-button.png" target="img/map-close-button.png" />
<!-- ios -->
<platform name="ios">
<js-module src="www/MapKit.js" name="mapkit">
<clobbers target="plugin.mapKit" />
</js-module>
<config-file target="config.xml" parent="/*">
<feature name="MapKit">
<param name="ios-package" value="MapKitView"/>
</feature>
</config-file>
<framework src="MapKit.framework" />
<resource-file src="src/ios/icon.png" />
<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" />
</platform>
</plugin>