3,153 questions
1
vote
0
answers
75
views
Is WearableListenerService not affected by background service restriction of android?
Hello? I am developing android wear app.
I know that there is a limitation of background service from android 8.
https://developer.android.com/about/versions/oreo/background#services
...
3
votes
1
answer
794
views
"MANAGE_EXTERNAL_STORAGE" permission on Wear OS 4
Description
I have encountered an issue with granting the "MANAGE_EXTERNAL_STORAGE" permission on Wear OS 4, and I'm seeking assistance in resolving it.
On Wear OS 3, I had no trouble ...
1
vote
1
answer
3k
views
How to Connect a Smartwatch to a Flutter App and retrieve steps details from the watch?
I'm working on a Flutter app and I want to establish a connection with a smartwatch to exchange step(tracking) data and control some features. I've done some research(Android & iOS), but I'm not ...
0
votes
0
answers
265
views
Can I Use BLE in android wear os?
I want to know it's possible to use BLE in android wear device(with Wear OS device) with out phone(device)
I know that it's possible to use BLE in android wear with phone but I'm not sure without ...
0
votes
1
answer
94
views
Request dangerous permission for wear os watchface
I'm trying to create a watch face using some data. However, I need access to ACCESS_FINE_LOCATION to get the user's location. From the sample provided here, the watch face is launched as a service and ...
1
vote
1
answer
796
views
Releasing Wear OS app with the mobile app in the same time in Google Play
I wonder how to create a release in the same time for my android apps for phone and watch
There is no reason to use these apps separately, but technically you can install only android app or only wear ...
2
votes
1
answer
223
views
Uploading Wear OS app with additional mobile app
Im trying to upload a new release to the PlayStore with two bundles:
Wear os bundle
Mobile bundle
I have enabled the wear os track
I created a new track for "WearOs only"
I have uses ...
0
votes
1
answer
59
views
WearOS PeriodicWork with Internet Connection
now i am programming a WearOS Watch.
And i have following quesiton.
I have a periodic work:
private val constraints = Constraints.Builder()
.setRequiredNetworkType(NetworkType.CONNECTED) //...
0
votes
1
answer
571
views
How smart watches and smart bands that use BLE connectivity be able to control Music playback in android phones?
I'm trying to implement two sample BLE applications. One application will be a client application and the other will be a peripheral application in two different devices. The client app will do a BLE ...
1
vote
0
answers
28
views
can we exclude/dont support specific device manufacture at manifest level.?
I am trying to develop a wearable application using Samsung Health SDK. Want to support only Samsung Devices(Watch, wear OS) only.
Can I add some specific code at the manifest level to exclude other ...
0
votes
1
answer
209
views
SuspendingTileService() is causing two errors on an empty class
I'm re-writing a wearOS android app. This app uses Horologist tiles. When I try to create the class to implement the tiles, I get the error:
Class 'MainTile' is not abstract and does not implement ...
0
votes
0
answers
112
views
WearOS : JetpackCompose : Disable Quick panel on particular Activity
I want to disable a quick panel when swipe down that show in wearOS watch in samsung watch 4 or above new model version of watch , is there any ways to disable this or not please give me some idea or ...
1
vote
2
answers
2k
views
Keyboard need to open automatic and ready to type when activity start in jetpackCompose
Here I am trying to open keyboard automatic when activity get started in JetpackCompose, but I am not getting any ways to achieve this success and getting the error below:
As I study more and I found ...
0
votes
1
answer
587
views
Arrange items at the top of a ScalingLazyColumn
My layout contains a single ScrollingLazyColumn that fills the entire screen.
The first item should be at the top of the screen, but it is centered.
Here is my code:
@Preview(device = Devices....
0
votes
1
answer
231
views
Can't release new version after create specific Track for Wear OS (Android)
I have a Watch Face for Wear OS + Companion App for phone and tablet. I have created a new track specific for Wear OS, as suggested in:
https://support.google.com/googleplay/android-developer/answer/...
1
vote
1
answer
477
views
How to make WearableListenerService working in Android 13?
WearableListenerService stopped working in API 33 leading to a situation when WearOS devices are not able to send message to a phone. Google was aware about the issue and stated that it's fixed, but ...
1
vote
0
answers
190
views
How can i stop wearOS physical button default functionality for home action
i am working on project which is base on WearOs app development , This app content small game and in this i want to disable default functionality of physical button 1(Home or lock) and button 2(back ...
0
votes
1
answer
731
views
Does Health Connect available for Wear OS..?
I want to implement Health Connect on Wear OS-based SmartWatch.
But not getting any concreate information whether Health Connect supports Wear OS or not.
Also, Health Platform is going to deprecate ...
0
votes
1
answer
356
views
'AmbientLifecycleObserver' is abstract; cannot be instantiated
Google updated how ambient mode works in WearOS but I'm having trouble implementing the changes.
This is the change they made:
https://android-review.googlesource.com/c/platform/frameworks/support/+/...
6
votes
1
answer
361
views
Is speech recognition is available on Galaxy Watch 4?
I try to make a voice recognition on my Galaxy Watch 4 in Kotlin language with Android Studio and it seems that it is not available on this device.
The value of SpeechRecognizer.isRecognitionAvailable(...
3
votes
0
answers
156
views
Unexpected complication data (Galaxy Watch 4)
I've created simple complication which shows air pressure in hhmg units (because default one uses hPa units).
It works perfectly on Pixel Watch.
But when I've installed it on Galaxy Watch 4 it doesn't ...
1
vote
1
answer
285
views
Naming of Wear OS module of existing Android application
I am developing a Wear OS application of existing Android Application. I created Wear OS module with different app, module and package name in Android Studio of existing Android application's project. ...
2
votes
1
answer
305
views
Column layout in an Tile in Android Watch
I finally got my tile working for my Android Watch project, but I can't get the layout to work properly. I am trying to have text (dynamically will change based on state and a freshness timer) and a ...
0
votes
0
answers
242
views
How to get the step counter from Google Fit in a Wear OS Watchface?
I'm trying to develop a Watchface in Kotlin and I'm facing some difficulties in obtaining the number of steps and other data. I'm really a beginner in this subject and in Kotlin, so please be kind c:
...
0
votes
1
answer
357
views
Wear OS: How to instantly bring up the keyboard input on Chip click?
I have a Chip component, and through its onClick event, I would like to bring up the keyboard.
Currently, I am using the RemoteInput API:
val intent: Intent = RemoteInputIntentHelper....