@capacitor/geolocation 7.1.4 → 7.1.5

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.
@@ -13,6 +13,6 @@ Pod::Spec.new do |s|
13
13
  s.source_files = 'ios/Sources/**/*.{swift,h,m,c,cc,mm,cpp}'
14
14
  s.ios.deployment_target = '14.0'
15
15
  s.dependency 'Capacitor'
16
- s.dependency 'IONGeolocationLib', spec='~> 1.0'
16
+ s.dependency 'IONGeolocationLib', spec='1.0.1'
17
17
  s.swift_version = '5.1'
18
18
  end
package/Package.swift CHANGED
@@ -15,8 +15,8 @@ let package = Package(
15
15
  targets: [
16
16
  .binaryTarget(
17
17
  name: "IONGeolocationLib",
18
- url: "https://github.com/ionic-team/ion-ios-geolocation/releases/download/1.0.0/IONGeolocationLib.zip",
19
- checksum: "b117d3681a947f5d367e79abdb3bfc9abf7ab070ea5279d7da634ddd2d54ffdb" // sha-256
18
+ url: "https://github.com/ionic-team/ion-ios-geolocation/releases/download/1.0.1/IONGeolocationLib.zip",
19
+ checksum: "80e0283964bce3c5d05f61ff4acf4e029305f58d1699a7f16453058ba876bc21" // sha-256
20
20
  ),
21
21
  .target(
22
22
  name: "GeolocationPlugin",
@@ -208,6 +208,7 @@ private extension GeolocationPlugin {
208
208
  }
209
209
 
210
210
  func handleLocationRequest(_ enableHighAccuracy: Bool, watchUUID: String? = nil, call: CAPPluginCall) {
211
+ bindLocationPublisher()
211
212
  let configurationModel = IONGLOCConfigurationModel(enableHighAccuracy: enableHighAccuracy)
212
213
  locationService?.updateConfiguration(configurationModel)
213
214
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@capacitor/geolocation",
3
- "version": "7.1.4",
3
+ "version": "7.1.5",
4
4
  "description": "The Geolocation API provides simple methods for getting and tracking the current position of the device using GPS, along with altitude, heading, and speed information if available.",
5
5
  "main": "dist/plugin.cjs.js",
6
6
  "module": "dist/esm/index.js",