Skip to content

Commit cbdcde7

Browse files
committed
Merge branch 'release-4.18.1'
2 parents 8b81819 + 0810f83 commit cbdcde7

4 files changed

Lines changed: 7 additions & 4 deletions

File tree

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# CHANGELOG
22

3+
## 4.18.1 — 2025-11-08
4+
* [Android] pin `tslocationmanager` at `3.+` in preparation for next release..
5+
36
## 4.18.0 — 2025-09-08
47
* [Android] Drop Huawei HMS support for failure to provide *Android 16KB Page support* in their SDKs.
58

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "cordova-background-geolocation-lt",
3-
"version": "4.18.0",
3+
"version": "4.18.1",
44
"description": "Cordova / Capacitor Background Geolocation. The most sophisticated, cross-platform location-tracking and geofencing plugin with battery-conscious motion-detection intelligence.",
55
"cordova": {
66
"id": "cordova-background-geolocation-lt",

plugin.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<plugin xmlns="http://www.phonegap.com/ns/plugins/1.0"
44
xmlns:android="http://schemas.android.com/apk/res/android"
55
id="cordova-background-geolocation-lt"
6-
version="4.18.0">
6+
version="4.18.1">
77

88
<name>BackgroundGeolocation</name>
99
<description>The most sophisticated, battery-efficient background-geolocation and geofencing plugin for Cordova</description>

src/android/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -121,9 +121,9 @@ dependencies {
121121

122122
def locationMajorVersion = playServicesLocationVersion.split('\\.')[0] as int
123123
if (locationMajorVersion >= 21) {
124-
api(group: 'com.transistorsoft', name:'tslocationmanager-v21', version: '+')
124+
api(group: 'com.transistorsoft', name:'tslocationmanager-v21', version: '3.+')
125125
} else {
126-
api(group: 'com.transistorsoft', name:'tslocationmanager', version: '+')
126+
api(group: 'com.transistorsoft', name:'tslocationmanager', version: '3.+')
127127
}
128128

129129
implementation "com.google.android.gms:play-services-location:$playServicesLocationVersion"

0 commit comments

Comments
 (0)