r/WearOS

▲ 0 r/WearOS

I built Sanjivani: A privacy-first AI radar that predicts illness 24-48h before you feel symptoms.

Hey everyone,

I’ve spent the last few months building Sanjivani, an app designed to solve a problem we’ve all had: waking up sick and wishing we knew it was coming sooner.

The Problem: Most wearables tell you how you slept, but they don't tell you what is about to happen to your health. The Solution: Sanjivani uses EMA-smoothed Multi-Signal Correlation (RHR, HRV, SpO2) to detect pathological anomalies before physical symptoms manifest.

Why I think the community will like it:

  1. 100% Privacy (Local-First): Unlike other health apps, the AI logic happens entirely on your device. Your biology stays in your "Black Box."
  2. Guardian SOS Protocol: An autonomous safety layer that notifies your emergency contact if high-risk states persist—without a human-in-the-loop.
  3. No Bullshit Alerts: I use a "Smart Suppression" layer to filter out shifts caused by alcohol, caffeine, or intense workouts.

The website is live at https://www.sanjivaniai.in, and I’m looking for 50-100 beta testers to help refine the clinical precision.

reddit.com
u/Aaroncross221b — 2 days ago
▲ 14 r/WearOS

OnePlus Watch 4 / Oppo Watch X3

It's official, OnePlus watch 4 comes with wearos 6 out of the box which means the update is coming soon to OnePlus watch 3 & 2.

u/Suspicious-Bus-5422 — 2 days ago
🔥 Hot ▲ 96 r/WearOS+1 crossposts

Galaxy Watch Ultra vs 8 Classic

Which one to get? Ultra is 250 € as new and 8 classic 260 € sealed. How's the battery life on both? I need answers from owners of these models .

u/Suspicious-Bus-5422 — 3 days ago
▲ 6 r/WearOS

Long Time Wear OS Watch user and I've switched from Galaxy to Pixel and here is why....

I have been a smartwatch user since 2014. Pebble was my first smartwatch, then ticwatch, then fossil, then Galaxy. Galaxy for me has always had Sleep monitoring problems and for months now my Galaxy 7 watch raise to wake has not been working properly which is frustrating. Purchased a Pixel 3 on Ebay to give it a try and I was totally surprise with the sleep monitoring. It is the best of any watch I have tried. Tried the pixel for 2 weeks, had a few problems with the step count but its fixed now and I've sold my galaxy watches on Ebay. BTW, the raise to wake on the pixel works perfectly. Just sharing... Never thought Google would surpass Samsung.

reddit.com
u/Dannykirk8 — 2 days ago
▲ 9 r/WearOS

I have a Samsung watch 8 and my band has started going blue but I dont have any blue clothing

u/Level_Cod2210 — 2 days ago
▲ 2 r/WearOS

Looking for 12 Wear OS testers for a new moon tile app

Hi, I’m getting ready to publish my first Wear OS app and I need help with Google Play closed testing.

The app is called Lunar Tile. It’s a smartwatch tile that shows:

  • moon phase
  • moon zodiac sign
  • degree in sign
  • illumination
  • past/future date browsing

I need at least 12 testers with a Wear OS watch who are willing to:

  • join the Google Play closed test
  • install the app on their watch
  • stay opted in for 14 days

If you’re interested and have a Galaxy Watch, Pixel Watch, or another Wear OS device, please comment here or DM me and I’ll send the opt-in link.

I’d also really appreciate any feedback on the app’s look, moon phase visuals, and usability.

Thank you so much. This is my first app and I’m trying to get it through Google Play’s testing requirement.

▲ 0 r/WearOS

Crypto Tracker: Watch Alerts

  • Name of App: Crypto Tracker: Watch Alerts
  • Brief Description of app's features: Stay ahead of the volatile crypto market without ever pulling out your phone. Crypto Tracker is a premium, wrist-first experience designed specifically for Wear OS, featuring a sleek Material 3 interface, real-time data, and deep watch face integration.
  • Cost: $3.49
  • Play Store Link or equivalent if it's not on the Play Store: https://play.google.com/store/apps/details?id=com.gphoenix.cryptotracker
u/StorageGeneral — 2 days ago
▲ 0 r/WearOS

Spotify non si collega al mio account principale su Xiaomi Watch 5 (Wear OS 5) — altri account funzionano

Ciao a tutti,
sto avendo un problema molto strano con Spotify sul mio Xiaomi Watch 5 con Wear OS 5.

Con il mio account principale Spotify non riesco a collegarmi allo smartwatch: l’app mostra un errore di connessione anche se Internet è attivo.
Ho però provato con un altro account sullo stesso orologio e lì funziona tutto correttamente, quindi il problema sembra legato al mio account e non al dispositivo.

Ho già contattato l’assistenza Spotify 3 volte nell’ultima settimana e ho seguito tutti i passaggi che mi hanno suggerito:

  • cancellare la cache di Spotify sullo smartwatch;
  • cancellare i dati sul telefono;
  • rimuovere eventuale cartella com.spotify;
  • disinstallare e reinstallare Spotify sia sul telefono che sul watch.

Le versioni che sto usando sono:

  • Spotify smartwatch: 9.1.40.1482
  • Spotify telefono: 9.1.40.1486

Il telefono è un Redmi Note 13.

L’errore che compare sullo smartwatch è questo: “Si è verificato un problema. Assicurati di avere una connessione a Internet sullo smartwatch. Riprova.”

A questo punto penso che il problema sia collegato al mio account Spotify principale, perché con un altro account sullo stesso orologio tutto funziona.

Qualcuno ha avuto un problema simile o sa come risolverlo?

https://preview.redd.it/6fpplv97ubwg1.jpg?width=960&format=pjpg&auto=webp&s=6bce8dd8a01774e538d48411de20575facc034ae

reddit.com
u/ErGamepluz — 22 hours ago
▲ 1 r/WearOS

Unable to read calendar info on watch

This is a dev question: does anyone know if WearOS makes calendar information available via content provider?

I'm writing a simple agenda application that fetches upcoming calendar events for all my calendars, but all my queries are returning empty data.

  • The Google Calendar app is installed on my watch and shows my upcoming events.
  • The Google Calendar complication works fine.
  • I ran my code both on an emulator logged in to my account, as well as on my physical watch (Pixel Watch 4).

My test code runs fine on my Android phone, so I'm suspecting it's a limitation of Google Calendar on the watch, for example listing all calendars:

    val calendars = mutableListOf<CalendarItem>()
    val projection = arrayOf(
        CalendarContract.Calendars._ID,
        CalendarContract.Calendars.CALENDAR_DISPLAY_NAME,
        CalendarContract.Calendars.CALENDAR_COLOR
    )
    val cursor = context.contentResolver.query(
        CalendarContract.Calendars.CONTENT_URI, projection,
        null, null, null
    )
    cursor?.use {
        while (it.moveToNext()) {
            val id = it.getLong(0)
            val displayName = it.getString(1)
            val color = it.getInt(2)
            calendars.add(CalendarItem(id, displayName, color))
        }
    }

All documentation I found seems to suggest this should work on WearOS but I tried looking for other similar apps and they either aren't available anymore, or seem to depend on a mobile app. I'm starting to think that this is deprecated functionality.

Are my only options here to make a companion app, or to implement the Google Calendar API?

reddit.com
u/DrFossil — 2 days ago
▲ 22 r/WearOS

OnePlus Watch 3 vs OnePlus Watch 4

Should i buy the OnePlus watch 3 now for 240 € or just wait for the 4? There's no much difference in specifications but the 4 will be more than 350 € at launch

u/Suspicious-Bus-5422 — 5 days ago
🔥 Hot ▲ 159 r/WearOS

I built a Wear OS app so I wouldn't sleep past my bus stop. Woke up today to see it featured across the global tech press! ⌚🚌

Hey r/WearOS ! 👋 It's me again.

A little while ago, I launched my app, Sleep&Arrive, right here in this community. I built this because I was constantly exhausted, falling asleep on public transit, and completely terrified of missing my stop. It was a solo indie project I coded to solve my own daily commute panic.

Over the last 48 hours, I noticed a massive, unexpected shift in the app's growth metrics and global engagement. I did some digging into the traffic sources, and I am honestly still shaking while writing this.

My little indie project got picked up by the global tech press! 🎉

🗞️ THE GLOBAL PRESS COVERAGE Seeing a project I built from scratch to help me survive my daily bus rides being featured on the front pages of major industry outlets is an incredibly surreal milestone for a solo developer. (I've put the massive list of all the international sites that covered it in the comments below so I don't trigger Reddit's spam filters, but here are the big ones!)

  • Android Authority: Wrote a massive feature calling the app a "lifesaver for sleepy commuters."Link to AA
  • Digital Trends: Labeled it a "godsend if your daily commute is tiring and sleepy."Link to DT
  • Giga.de (Germany): Highlighted it as a "must-know Android app for Deutsche Bahn users."Link to Giga

📍 WHAT IS SLEEP&ARRIVE? (For the newcomers) Since a lot of new people are joining the ecosystem, here is a quick recap: Instead of setting an alarm for a specific time (which is useless when transit is delayed), you set an alarm for a specific location.

  • Independent Wrist Wake-Up: Set the alarm on your phone, put it in your pocket, and when you enter the destination radius, your smartwatch violently vibrates to wake you up.
  • Flawless Background Operation: I spent weeks optimizing the code so the GPS tracking continues to run efficiently even with your screen off.
  • Wrong Direction Alert: Detects if you accidentally hop on the wrong train and wakes you up instantly.

💡 MONETIZATION & TRANSPARENCY The core GPS tracking, basic alarms, and smartwatch sync are 100% FREE. Seeing this massive influx of global users has been amazing, but API and server costs are becoming very real. I have a PRO version that unlocks highly advanced features. If you want to support a solo indie developer cover server costs and keep updates coming, upgrading to PRO would mean the world to me. It’s basically buying me a coffee! ☕

But honestly, just downloading it and leaving an honest review is more support than I could ever ask for.

🔗 Download it here:https://play.google.com/store/apps/details?id=com.mfrkndgn.uyuvar

I would absolutely love to hear your thoughts, bug reports, or feature requests now that the global community is jumping in. Let's keep making the WearOS ecosystem better together. Cheers! 🥂

u/MFRKNDGN — 6 days ago
▲ 13 r/WearOS

What is the best android smartwatch widely loved on the market right now?

Hi everyone! I switched from android to apple years ago as wanted a smartwatch and at the time, nothing android had was comparable. I’m getting tired off Apple and want to move back to Android.

What would you recommend?

reddit.com
u/Dry-Effective2 — 6 days ago
▲ 3 r/WearOS+1 crossposts

Galaxy Watch 8 Running Coach voice assistant speaking gibberish?

Hey everyone,

I got my Galaxy Watch 8 a few days ago and yesterday I started using the Running Coach feature. Today was my first actual run with it, and I turned on the voice assistant so I wouldn’t have to keep looking at the watch while running.

However… I was pretty surprised when the assistant started speaking in what sounded like a completely unknown language. Or honestly not even a real language, more like gibberish 😅

I couldn’t find anything about this issue online, and I also didn’t find any clear way to change the assistant’s language (if that’s even the problem).

Has anyone experienced something like this?
Any idea what might be causing it or how to fix it?

Thanks in advance!

reddit.com
u/Strange_Fruit_3794 — 1 day ago
▲ 2 r/WearOS

The Crow's Watch - Testers Wanted

  • Name of App: The Crow's Watch
  • Brief Description of app's features: Pirate Adventure Game
  • Cost: TBA $0.00 during testing
  • Play Store Link or equivalent if it's not on the Play Store: Will be available on the play store, however during testing it will be limited to those who join the Closed Testing Google Group. Details can be found at https://thecrowswatch.com
reddit.com
u/thecrowswatch — 2 days ago