You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
97 lines
3.1 KiB
XML
97 lines
3.1 KiB
XML
<?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="uk.co.workingedge.phonegap.plugin.launchnavigator"
|
|
version="3.2.2">
|
|
|
|
<name>Launch Navigator</name>
|
|
<description>Cordova/Phonegap plugin to navigate to a destination using native navigation apps on Android, iOS, and Windows Phone</description>
|
|
<author>Dave Alden</author>
|
|
|
|
<engines>
|
|
<engine name="cordova" version=">=4.0.0" />
|
|
</engines>
|
|
<repo>https://github.com/dpa99c/phonegap-launch-navigator.git</repo>
|
|
<issue>https://github.com/dpa99c/phonegap-launch-navigator/issues</issue>
|
|
|
|
<license>MIT</license>
|
|
<keywords>cordova,phonegap,ios,android,windows,navigation,navigator</keywords>
|
|
|
|
<js-module src="www/common.js" name="Common">
|
|
<clobbers target="launchnavigator" />
|
|
</js-module>
|
|
|
|
<!-- android -->
|
|
<platform name="android">
|
|
<dependency id="cordova-plugin-actionsheet" version="^2.2.2" />
|
|
|
|
<js-module src="www/android/launchnavigator.js" name="LaunchNavigator">
|
|
<merges target="launchnavigator" />
|
|
</js-module>
|
|
|
|
<config-file target="res/xml/config.xml" parent="/*">
|
|
<feature name="LaunchNavigator">
|
|
<param name="android-package" value="uk.co.workingedge.phonegap.plugin.LaunchNavigator"/>
|
|
</feature>
|
|
</config-file>
|
|
|
|
<source-file src="src/android/LaunchNavigator.java" target-dir="src/uk/co/workingedge/phonegap/plugin" />
|
|
|
|
<framework src="com.squareup.okhttp3:okhttp:3+" />
|
|
</platform>
|
|
|
|
<!-- ios -->
|
|
<platform name="ios">
|
|
<dependency id="cordova-plugin-actionsheet" version="^2.2.2" />
|
|
|
|
<js-module src="www/ios/launchnavigator.js" name="LaunchNavigator">
|
|
<merges target="launchnavigator" />
|
|
</js-module>
|
|
|
|
<config-file target="config.xml" parent="/*">
|
|
<feature name="LaunchNavigator">
|
|
<param name="ios-package" value="LaunchNavigator"/>
|
|
</feature>
|
|
</config-file>
|
|
|
|
<header-file src="src/ios/CMMapLauncher.h" />
|
|
<source-file src="src/ios/CMMapLauncher.m" />
|
|
<header-file src="src/ios/LaunchNavigator.h" />
|
|
<source-file src="src/ios/LaunchNavigator.m" />
|
|
|
|
<framework src="MapKit.framework" />
|
|
<framework src="CoreLocation.framework" />
|
|
|
|
<config-file target="*-Info.plist" parent="LSApplicationQueriesSchemes">
|
|
<array>
|
|
<string>citymapper</string>
|
|
<string>comgooglemaps</string>
|
|
<string>navigon</string>
|
|
<string>transit</string>
|
|
<string>waze</string>
|
|
<string>yandexnavi</string>
|
|
<string>uber</string>
|
|
<string>tomtomhome</string>
|
|
<string>com.sygic.aura</string>
|
|
<string>here-route</string>
|
|
<string>moovit</string>
|
|
</array>
|
|
</config-file>
|
|
</platform>
|
|
|
|
<!-- windows -->
|
|
<platform name="windows">
|
|
<js-module src="www/windows/launchnavigator.js" name="LaunchNavigator">
|
|
<merges target="launchnavigator" />
|
|
</js-module>
|
|
</platform>
|
|
|
|
<!-- wp8 -->
|
|
<platform name="wp8">
|
|
<js-module src="www/wp8/launchnavigator.js" name="LaunchNavigator">
|
|
<merges target="launchnavigator" />
|
|
</js-module>
|
|
</platform>
|
|
|
|
</plugin> |