Questions tagged [wear-os]

Wear OS is an operating system extended from the Android platform that powers a new generation of wearable devices.

Wear OS (formally known as Wear OS by Google) extends the platform to a new generation of wearable devices like SmartWatches (wrist watches) and SmartBands. Wear OS lets you create wearable experiences for your existing Android apps that can be used without taking your phone out of your pocket.

The operating system was first announced by Google in March 2014 as Android Wear. In 2018 it was rebranded to Wear OS by Google.

Google defines Wear OS as:

Small, powerful devices, worn on the body. Useful information when you need it most. Intelligent answers to spoken questions. Tools to help reach fitness goals. Your key to a multiscreen world.

Developers can build everything from a completely standalone application (i.e. no need for the wearable to be paired with a phone), to an extended phone experience on your wrist, to custom watch faces.

The operating system supports a wide range of features (some also available in Android, some exclusive to Wear OS), such as:

  • Google Assistant
  • Heart Rate Monitor
  • GPS & Accelerometer
  • Voice input
  • Gesture controls
  • Notifications from a paired phone (or the wearable itself)
  • Complications API

Note: Google Glass has its own tag , although it's also a wearable device.


External Links

3009 questions
1
vote
1 answer

Google example universal music player build error

I got build error like this after i download and imported the example https://github.com/googlesamples/android-UniversalMusicPlayer Error:A problem occurred configuring project ':mobile'. Could not resolve all dependencies for configuration…
Jay Hu
  • 6,041
  • 3
  • 22
  • 33
1
vote
2 answers

Android Studio : Size of the release apk of a watch face does not goes under 6Mo

I found out that every watch face i made did have a release apk file that never goes under 6Mo. Even when it does not contain any drawable. Even the default watch face project is about 6Mo once published & signed. I assume it is an issue of Android…
Thomas Thomas
  • 824
  • 1
  • 9
  • 21
1
vote
0 answers

Android Wear : Wearable Not recognized by Eclipse

I am working on Android wear SDK in Eclipse, I am unable import below line of code, import com.google.android.gms.wearable.MessageApi; import com.google.android.gms.wearable.Node; import com.google.android.gms.wearable.NodeApi; import…
pank
  • 21
  • 2
1
vote
2 answers

Does Android Wear 5.1.1 support direct Internet connections?

I have tried connecting to addresses and ip's with sockets and httpurlconnection with no success, and I do have the Internet permission in the manifest. I have read that the watch doesn't have to be on the same network where the phone is, so the…
1
vote
1 answer

Send data and wait for the answers with the Wearable Data Layer API

I have a wearable device from which data is sent to a handheld device wrapped in a DataMap object. On the handheld device I implemented a listener service that extends WearableListenerService implemented in this way: public class ListenerService…
Dev
  • 7,027
  • 6
  • 37
  • 65
1
vote
0 answers

How to build signed release version of Android Wear watch face the correct way?

I am trying to build a signed APK of an android wear face. Since I've been running into trouble, I'm trying to do this as a proof of concept with the default template project in Android Studio 1.2.1.1 on Mac OS X. These are the steps I took: Start…
robrene
  • 99
  • 8
1
vote
1 answer

Can Android wearable send event to the phone and call 3rd party Services?

I'm new to wearable development, it's quite standard that wearable only uses GoogleAPIs. But is it possible to call a background service from the phone and send the results back ? this is my thoughts: Wearable send an event to the phone via…
WenChao
  • 3,586
  • 6
  • 32
  • 46
1
vote
2 answers

Android Wear Emulator: How to debug on Emulator?

I have a simple application where in I am sending some message to Wear and receiving some from wear. Now how do I test this when I just have a real handheld device with a emulator? Whatever I do, the emulator does not connect to the device. In the…
Ritu Raj
  • 543
  • 2
  • 6
  • 23
1
vote
2 answers

Android Wear: How to connect and send data

I tried different Android Wear tutorials and documentations, but keep on failing. So little by little, my first steps here. All I want (at the end) is to send a string "hello world" from my mobile device to android wear (Moto 360). What I did so far…
AndyAndroid
  • 4,039
  • 14
  • 44
  • 71
1
vote
1 answer

Starting android wear app from mobile

at the moment it only I can send data between the mobile and wear app while the app is already open on both the mobile and the wear app. Is there any way that I can start up the wear app from the mobile app instead?
1
vote
1 answer

WearableListenerService - onPeerConnected never called

I created simple Phone<->Wear App. Wear app has one Activity with code: public class MainActivity extends Activity implements GoogleApiClient.ConnectionCallbacks { private TextView mTextView; @Override protected void onCreate(Bundle…
michal.luszczuk
  • 2,883
  • 1
  • 15
  • 22
1
vote
0 answers

ReceiverCallNotAllowedException crash from Google Play Services on Android Wear

I'm seeing occasional crashes from my apps on the watch that give the following stack trace: FATAL EXCEPTION: main Process: com.mypackagename, PID: 3487 android.content.ReceiverCallNotAllowedException: BroadcastReceiver components are not allowed to…
Sterling
  • 6,365
  • 2
  • 32
  • 40
1
vote
0 answers

How to manage audio output on Android Wear

Problem: there is no internal speaker for Android wear. When my app rings, there is no sound unless user turn on speaker. What I want to achieve: turn on external speaker if internal one is unavailable. There could be two options: 1) detect internal…
xialin
  • 7,686
  • 9
  • 35
  • 66
1
vote
1 answer

Passing different Extras to different setDisplayIntent, but same is received

I am in a case where my Watch application has updated data and will display these data in multiple pages. According to this answer: https://stackoverflow.com/a/30133449/327402 , I created a displayIntent for each one of my page. List extras = new…
Waza_Be
  • 39,407
  • 49
  • 186
  • 260
1
vote
1 answer

How to Change the default blue color background of Android Wear notification

I would like to change the default blue background of the android notification. My icon doesn't go well with blue and I want to change it. Is there any method to specify the color of the background?
nizam.sp
  • 4,002
  • 5
  • 39
  • 63
1 2 3
99
100