Skip to content

Commit e832649

Browse files
fix(android): Native timeout in watchPosition (#18)
* fix(android): Native timeout in `watchPosition` By updating native android geolocation lib to latest version 2.1.0 Unlike in Capacitor plugin, we don't really have need to support `interval` parameter here, because the OutSystems plugin will have the same behavior as before. References: - https://outsystemsrd.atlassian.net/browse/RMET-4688 - ionic-team/ion-android-geolocation#8 * chore(release): Prepare 1.1.1 plugin release
1 parent d2b7c9d commit e832649

File tree

5 files changed

+9
-5
lines changed

5 files changed

+9
-5
lines changed

CHANGELOG.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,11 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

77

8-
## [Unreleased]
8+
## [1.1.1]
9+
10+
## 2025-11-21
11+
12+
- fix(android): Native timeout in `watchPosition`
913

1014
## 2025-10-20
1115

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "com.outsystems.plugins.geolocation",
3-
"version": "1.1.0",
3+
"version": "1.1.1",
44
"private": true,
55
"dependencies": {},
66
"scripts": {

packages/cordova-plugin/android/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ allprojects {
1717
}
1818

1919
dependencies{
20-
implementation("io.ionic.libs:iongeolocation-android:2.0.0")
20+
implementation("io.ionic.libs:iongeolocation-android:2.1.0")
2121
implementation("androidx.browser:browser:1.8.0")
2222
implementation("com.google.android.gms:play-services-auth:21.2.0")
2323
implementation("com.google.android.gms:play-services-location:21.3.0")

packages/cordova-plugin/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "com.outsystems.plugins.geolocation",
33
"displayName": "Geolocation",
4-
"version": "1.1.0",
4+
"version": "1.1.1",
55
"description": "Geolocation plugin for Cordova",
66
"scripts": {
77
"lint": "npm run eslint && npm run prettier -- --check",

plugin.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?xml version='1.0' encoding='utf-8'?>
2-
<plugin id="com.outsystems.plugins.geolocation" version="1.1.0" xmlns="http://apache.org/cordova/ns/plugins/1.0" xmlns:android="http://schemas.android.com/apk/res/android">
2+
<plugin id="com.outsystems.plugins.geolocation" version="1.1.1" xmlns="http://apache.org/cordova/ns/plugins/1.0" xmlns:android="http://schemas.android.com/apk/res/android">
33
<name>OSGeolocationPlugin</name>
44
<description>OutSystems' cordova geolocation plugin</description>
55
<author>OutSystems Inc</author>

0 commit comments

Comments
 (0)