-
Notifications
You must be signed in to change notification settings - Fork 0
/
plugin.xml
30 lines (26 loc) · 1.05 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
<?xml version='1.0' encoding='utf-8'?>
<plugin id="cordova-plugin-applemapkit" version="0.0.1" xmlns="http://apache.org/cordova/ns/plugins/1.0"
xmlns:android="http://schemas.android.com/apk/res/android">
<name>MapKit</name>
<engines>
<engine name="cordova" version=">=4.0.0"/>
</engines>
<js-module name="MapKit" src="www/MapKit.js">
<clobbers target="mapKit"/>
</js-module>
<platform name="ios">
<framework src="MapKit.framework" />
<config-file parent="/*" target="config.xml">
<feature name="MapKit">
<param name="ios-package" value="MapKitView"/>
<param name="onload" value="true"/>
</feature>
</config-file>
<header-file src="src/ios/MapKit.h"/>
<header-file src="src/ios/AsyncImageView.h"/>
<header-file src="src/ios/CDVAnnotation.h"/>
<source-file src="src/ios/MapKit.m"/>
<source-file src="src/ios/AsyncImageView.m"/>
<source-file src="src/ios/CDVAnnotation.m"/>
</platform>
</plugin>