@capgo/capacitor-launch-navigator 7.1.1 → 7.1.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -10,6 +10,10 @@ Capacitor plugin for launching navigation apps to navigate to a destination.
10
10
 
11
11
  This plugin is a Capacitor port of the popular phonegap-launch-navigator plugin, supporting navigation with latitude/longitude coordinates only (no address support - use [@capgo/capacitor-nativegeocoder](https://github.com/Cap-go/capacitor-nativegeocoder) for address geocoding).
12
12
 
13
+ ## Documentation
14
+
15
+ The most complete doc is available here: https://capgo.app/docs/plugins/launch-navigator/
16
+
13
17
  ## Install
14
18
 
15
19
  ```bash
@@ -10,7 +10,7 @@ import com.getcapacitor.annotation.CapacitorPlugin;
10
10
  @CapacitorPlugin(name = "LaunchNavigator")
11
11
  public class LaunchNavigatorPlugin extends Plugin {
12
12
 
13
- private final String PLUGIN_VERSION = "7.1.1";
13
+ private final String PLUGIN_VERSION = "7.1.2";
14
14
 
15
15
  private LaunchNavigator implementation;
16
16
 
@@ -9,7 +9,7 @@ import MapKit
9
9
  */
10
10
  @objc(LaunchNavigatorPlugin)
11
11
  public class LaunchNavigatorPlugin: CAPPlugin, CAPBridgedPlugin {
12
- private let PLUGIN_VERSION: String = "7.1.1"
12
+ private let PLUGIN_VERSION: String = "7.1.2"
13
13
  public let identifier = "LaunchNavigatorPlugin"
14
14
  public let jsName = "LaunchNavigator"
15
15
  public let pluginMethods: [CAPPluginMethod] = [
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@capgo/capacitor-launch-navigator",
3
- "version": "7.1.1",
3
+ "version": "7.1.2",
4
4
  "description": "Capacitor plugin which launches native route navigation apps for Android, iOS",
5
5
  "main": "dist/plugin.cjs.js",
6
6
  "module": "dist/esm/index.js",