forked from victorzimmer/MapKit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
plugin.xml
24 lines (24 loc) · 996 Bytes
/
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
<?xml version="1.0" encoding="UTF-8"?>
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0"
id="no.hotdot.mapkit" version="0.0.2">
<name>MapKit</name>
<description>Cordova Plugin for Native Maps</description>
<license>HotDot Open Source License</license>
<keywords>cordova,device,maps,mapkit,apple,applemaps</keywords>
<js-module src="www/mapkit.js" name="mapkit">
<clobbers target="mapkit" />
</js-module>
<platform name="ios">
<config-file target="config.xml" parent="/*">
<feature name="MapKit">
<param name="ios-package" value="MapKit"/>
</feature>
</config-file>
<header-file src="src/ios/MapKit.h" />
<source-file src="src/ios/MapKit.m" />
<header-file src="src/ios/MKComplexMapPin.h" />
<source-file src="src/ios/MKComplexMapPin.m" />
<framework src="MapKit.framework" />
<framework src="CoreLocation.framework" />
</platform>
</plugin>