Last active
February 11, 2026 20:01
-
-
Save LethalMaus/3329122edb8cf4bb6b85e5fd104444d8 to your computer and use it in GitHub Desktop.
WearOSComplication.xml
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <service | |
| android:name=".service.QuickstartComplicationService" | |
| android:exported="true" | |
| android:label="@string/app_name" | |
| android:icon="@drawable/app_icon" | |
| android:permission="com.google.android.wearable.permission.BIND_COMPLICATION_PROVIDER"> | |
| <intent-filter> | |
| <action android:name="android.support.wearable.complications.ACTION_COMPLICATION_UPDATE_REQUEST" /> | |
| </intent-filter> | |
| <!-- Supported types should be comma-separated e.g. SHORT_TEXT,SMALL_IMAGE --> | |
| <meta-data | |
| android:name="android.support.wearable.complications.SUPPORTED_TYPES" | |
| android:value="SMALL_IMAGE" /> | |
| <meta-data | |
| android:name="android.support.wearable.complications.UPDATE_PERIOD_SECONDS" | |
| android:value="0" /> | |
| </service> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment