Skip to content

Commit 4788bf2

Browse files
author
Lalit Sharma
committed
fixed by updating the wearable listener service intent filter in AndroidManifest.xml:35
1 parent 264df41 commit 4788bf2

3 files changed

Lines changed: 12 additions & 2 deletions

File tree

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,15 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [1.1.27] — 2026-02-24
9+
10+
### Fixed
11+
- Updated Android phone app wearable listener manifest registration to replace deprecated `com.google.android.gms.wearable.BIND_LISTENER` with filtered `MESSAGE_RECEIVED` intent handling for live-location Data Layer messages.
12+
- Resolved release build failure in CI caused by `WearableBindListener` lint fatal error during `:app:lintVitalRelease`.
13+
14+
### Changed
15+
- Bumped `apps/mobile` version to `1.1.27`.
16+
817
## [1.1.26] — 2026-02-24
918

1019
### Added

apps/mobile/android/app/src/main/AndroidManifest.xml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,8 @@
3434
</activity>
3535
<service android:name=".wearable.WearDataLayerListenerService" android:exported="true">
3636
<intent-filter>
37-
<action android:name="com.google.android.gms.wearable.BIND_LISTENER"/>
37+
<action android:name="com.google.android.gms.wearable.MESSAGE_RECEIVED"/>
38+
<data android:scheme="wear" android:host="*" android:pathPrefix="/wear/live/location"/>
3839
</intent-filter>
3940
</service>
4041
<uses-library android:name="org.apache.http.legacy" android:required="false"/>

apps/mobile/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@eclipse-timer/mobile",
3-
"version": "1.1.26",
3+
"version": "1.1.27",
44
"private": true,
55
"main": "index.js",
66
"scripts": {

0 commit comments

Comments
 (0)