fix: fixed deprecated service

This commit is contained in:
2026-06-10 12:19:51 +03:00
parent f9a1a70faf
commit 6861f328f0
3 changed files with 5 additions and 1 deletions
Binary file not shown.
Binary file not shown.
+5 -1
View File
@@ -13,7 +13,11 @@
android:theme="@android:style/Theme.DeviceDefault"> android:theme="@android:style/Theme.DeviceDefault">
<service android:name=".presentation.MessagesReceiver" android:exported="true"> <service android:name=".presentation.MessagesReceiver" android:exported="true">
<intent-filter> <intent-filter>
<action android:name="com.google.android.gms.wearable.BIND_LISTENER" /> <action android:name="com.google.android.gms.wearable.MESSAGE_RECEIVED" />
<data
android:scheme="wear"
android:host="*"
android:pathPrefix="/cards" />
</intent-filter> </intent-filter>
</service> </service>