Skip to content

Commit 0f136a8

Browse files
committed
Merge branch 'master' of github.com:transistorsoft/react-native-background-geolocation
2 parents 36d8b06 + 4203912 commit 0f136a8

File tree

5 files changed

+13
-6
lines changed

5 files changed

+13
-6
lines changed

.github/ISSUE_TEMPLATE/1-bug.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ body:
1111
id: terms
1212
attributes:
1313
label: Required Reading
14-
description: "- I have read the Wikis [Philosophy of Operation](../wiki/Philosophy-of-Operation) and [Debugging](../wiki/Debugging)\n- I am aware of the [API Documentation](https://transistorsoft.github.io/react-native-background-geolocation/)\n- I am aware of the [CHANGELOG](../blob/master/CHANGELOG.md)"
14+
description: "- I have read the Wikis [Philosophy of Operation](./wiki/Philosophy-of-Operation) and [Debugging](./wiki/Debugging)\n- I am aware of the [API Documentation](https://transistorsoft.github.io/react-native-background-geolocation/)\n- I am aware of the [CHANGELOG](./blob/master/CHANGELOG.md)"
1515
options:
1616
- label: Confirmed
1717
required: true

.github/ISSUE_TEMPLATE/2-help-wanted.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ body:
1111
id: terms
1212
attributes:
1313
label: Required Reading
14-
description: "- I have read the Wikis [Philosophy of Operation](../wiki/Philosophy-of-Operation) and [Debugging](../wiki/Debugging)\n- I am aware of the [API Documentation](https://transistorsoft.github.io/react-native-background-geolocation/)\n- I am aware of the [CHANGELOG](../blob/master/CHANGELOG.md)"
14+
description: "- I have read the Wikis [Philosophy of Operation](./wiki/Philosophy-of-Operation) and [Debugging](./wiki/Debugging)\n- I am aware of the [API Documentation](https://transistorsoft.github.io/react-native-background-geolocation/)\n- I am aware of the [CHANGELOG](./blob/master/CHANGELOG.md)"
1515
options:
1616
- label: Confirmed
1717
required: true

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Change Log
22

3+
## 4.19.2 — 2025-11-09
4+
* [Android] re-build Expo plugin
5+
6+
## 4.19.1 — 2025-11-08
7+
* [Android] pin `tslocationmanager` at `3.+` in preparation for next release..
8+
39
## 4.19.0 — 2025-09-08
410
* [Android] Drop Huawei HMS support for failure to provide *Android 16KB Page support* in their SDKs.
511

android/build.gradle

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

7676
def locationMajorVersion = playServicesLocationVersion.split('\\.')[0] as int
7777
if (locationMajorVersion >= 21) {
78-
api(group: 'com.transistorsoft', name:'tslocationmanager-v21', version: '+')
78+
api(group: 'com.transistorsoft', name:'tslocationmanager-v21', version: '3.+')
7979
} else {
80-
api(group: 'com.transistorsoft', name:'tslocationmanager', version: '+')
80+
api(group: 'com.transistorsoft', name:'tslocationmanager', version: '3.+')
8181
}
8282

8383
implementation "androidx.appcompat:appcompat:$appCompatVersion"

package.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
11
{
22
"name": "react-native-background-geolocation",
3-
"version": "4.19.0",
3+
"version": "4.19.2",
44
"description": "The most sophisticated cross-platform background location-tracking & geofencing module with battery-conscious motion-detection intelligence",
55
"scripts": {
66
"build": "yarn run build:expo",
77
"test": "echo \"Error: no test specified\" && exit 1",
8-
"build:expo": "rimraf expo/plugin/build && tsc --build ./expo/plugin"
8+
"build:expo": "rimraf expo/plugin/build && tsc --build ./expo/plugin",
9+
"prepublishOnly": "npm run build"
910
},
1011
"main": "src/index.js",
1112
"repository": {

0 commit comments

Comments
 (0)