Skip to content

Instantly share code, notes, and snippets.

@LethalMaus
Created January 15, 2026 22:07
Show Gist options
  • Select an option

  • Save LethalMaus/17baf06ae4455905aa76941a400684aa to your computer and use it in GitHub Desktop.

Select an option

Save LethalMaus/17baf06ae4455905aa76941a400684aa to your computer and use it in GitHub Desktop.
WearManifest.xml
<service
android:name=".service.WearBridgeListenerService"
android:exported="true">
<intent-filter>
<action android:name="com.google.android.gms.wearable.MESSAGE_RECEIVED" />
<data android:scheme="wear" />
<data android:host="*" />
<data android:path="/request-control" />
<data android:path="/ping" />
<data android:path="/pong" />
</intent-filter>
<intent-filter>
<action android:name="com.google.android.gms.wearable.DATA_CHANGED" />
<data android:scheme="wear" />
<data android:host="*" />
<data android:path="/device-control" />
<data android:path="/user-profile" />
</intent-filter>
</service>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment