47 questions
0
votes
0
answers
45
views
How to detect when complication is removed?
I'm trying to detect when a complication data source is removed...
The class "ComplicationDataSourceService" allow me to override the "onComplicationDeactivated", however this ...
0
votes
0
answers
114
views
WearOS launching MainActivity/Tile/Complication
I'm developing a small WearOS App including tile, complication and MainActivity. The app shall request data from an app on a smartphone. A complication shall display this data as well as the tile or ...
1
vote
0
answers
58
views
Could not find dependency for ComplicationManager (androidx.wear.watchface:watchface-complications:1.2.1)
I am trying to the use facilities of the ComplicationManager in AndroidX, and to do so the Gemini AI engine tells me I need to include the following implementation directive in the dependencies block ...
1
vote
0
answers
110
views
How to preview Wear OS complications in Android Studio?
I am developing an app and it provides complications. I want to see the preview of the complication on different types (e.g. LONG_TEXT, SHORT_TEXT and RANGED etc.) in Android Studio.
Preview is ...
0
votes
1
answer
191
views
Detecting ambient mode in Wear OS 5
I have a ComplicationDataSourceService that needs to be notified when the watch goes into ambient mode or the screen turns off. The idea is that this is for a sort of "flashlight" ...
0
votes
1
answer
311
views
Wear OS complication is not being updated to the latest value
I am trying to update my complication from the shared SharedPreferences value which I define in my Activity like this
SharedPreferences.Editor editor = getSharedPreferences("MY_PREFS_NAME", ...
0
votes
1
answer
230
views
Wear OS complication .setTapAction for calling an activity
I am trying to put setTapAction of my complication to call the activity, but it’s not working whenever I tap it does not do anything just a ripple effect, my code is below.
class CustomComplication : ...
1
vote
1
answer
299
views
How to start a Wear OS app from a complication setTapAction() BroadcastReceiver?
I've created a Wear OS app with tile and complication using the built-in Android Studio project "Empty Wear App With Tile and Complications".
When the user touches the complication, I want ...
0
votes
1
answer
239
views
How do I set the icon in the list of complications?
How do I set the icon that appears in the list of complications? Here's my complications code, and screenshots of my icon showing correctly in the list of apps, the small icon showing correctly at the ...
0
votes
1
answer
102
views
Wear OS Complication setTapAction(): No Broadcast
I'm creating a pending intent for complication tap like this:
override fun onComplicationRequest(request: ComplicationRequest, listener: ComplicationRequestListener ) {
class ...
2
votes
0
answers
225
views
Change complication color dynamically? (Wear OS Jetpack Watch Face API)
How do I change the complication icon color dynamically in the renderer class?
I can set the color and other styles while creating the watchface in the createComplicationSlotsManager inside the ...
3
votes
0
answers
249
views
Add custom complication data source to Samsung watch face
I created a Wear OS complication data source that exposes SHORT_TEXT and LONG_TEXT. The complication works correctly in the emulator with the built-in watch faces. When I deploy the app to the Samsung ...
1
vote
1
answer
564
views
WearOS: tap action for watch face complication
I want to create watch face complication which will use data from my data provider project. I want to display it in a widget on the Watch Face in a way, so user can see some data from my app on tha ...
0
votes
1
answer
304
views
in Wear OS add a ShortTextComplicationData with Icon
I'm trying to create a complication for Wear OS and having problem trying to add the icons, I'm using ShortTextComplicationData which can be combine with an Icon, according to the documentation Here.
...
2
votes
1
answer
613
views
WearOS Complication rendering doesn't show up on the watchface
I followed WatchOS documentation for creation of the watchface. I can draw anything on the watchface without any problem, however, when I try to render any complication it doesn't show up.
package com....