Earlier quoted context omitted.
Even hardware features (heated steering wheel, rain sensing wipers, etc...) are now behind software switches which the car maker can control based upon subscription or trim-level purchase. All the hardware pieces are installed at build time
> heated steering wheel As a licensed driver who resides in the Sonoran Desert, can you even imagine the horrific visions that just flashed before my eyes? We often joke around here that wearing oven mitts is a good way to get our cars started in the late afternoons. It's not really a joke. I personally have several pairs of gloves, and I never fail to don those gloves when I go out, whether I am walking, riding an e…
My car’s OTA update broke Android Auto
61–70 of 217 posts
Re: My car’s OTA update broke Android Auto
#62His good points here are undermined by the profane, emotional high-cortisol crashout. There’s a place for well-written, witty diatribes and polemics, but throwing F-bombs and F-yous into complaints is not that.
Re: My car’s OTA update broke Android Auto
#63It's not an indictment of modern software. It's an indictment of using SW where not needed. Don't put discrete, isolated HW functions behind a SW powered screen. It's that simple.
Re: My car’s OTA update broke Android Auto
#64that's a symptom of a bigger problem. Someone in auto industry decided that plugging device, and dependency on core functionality of the car to 3rd party device, that might be lost, have battery died, used for something else, etc is a good way to save money and not do proper software. It's even more bizare now, mid 2026, when software is solved with AI. It's good that there are some companies, that ban android/apple…
Hello, Elon
Seriously this is so wrong. I love being able to carry all my preferences from my phone directly to the car without any additional configuration. Before this, we had to do stupid stuff like entering individual contacts in the cars system.
Re: My car’s OTA update broke Android Auto
#65The article is a lovely cathartic rant against agile software development methodologies applied in the wrong place in the wrong way, whether or not the software(s) in question used such methods. On of the worst assumptions, I believe, is that the end-user is willing and able to function as testing/QA without detriment to the product and company.
Re: My car’s OTA update broke Android Auto
#66It's not an indictment of modern software. It's an indictment of using SW where not needed. Don't put discrete, isolated HW functions behind a SW powered screen. It's that simple.
Re: My car’s OTA update broke Android Auto
#67Rather than hamstring all software by requiring DOT testing before firmware updates are published, follow Tesla's model which has been very reliable within the industry
Re: My car’s OTA update broke Android Auto
#68why OTA update OS that frequently? I've been lately into mobile apps and i am finding that there is no system which combines these 3 1. AOT 2. JIT (for hot paths) 3. Interpreter for non JIT paths or where you explicitly do not want jit. Imagine, a system which compiles your app to AOT but when you push OTA update, part of the app are selectively replaced to JIT or Interpreted mode. it's theoretically possible but nob…
You can't update any AOT code due to how code signing works in these OS. And Apple completely bans JIT on iOS and iPadOS.
AOT will be in base app and it will include JIT or Interpreted OTA updates.
For Apple, JIT can simply be disabled and OTA update can run patched part in interpreter.
But JIT works on Android (well), so this Hybrid system is capable of being much faster than React Native where your JS code only runs in Hermes VM which isn't JIT.
In this system, all your crazy math and algorithms (on hot path) stay easily updatable as this small part can be run on JIT with snapshot saved for next load if it has not changed!
JIT on average is 100x faster than dumb interpreter for language like Dart.
Does it already exist? otherwise i am seriously thinking about building something like this.
Re: My car’s OTA update broke Android Auto
#69Earlier quoted context omitted.
>It’s just disabled on the cars sold without the option. So exactly like software licensing? Most apps nowadays don't even require a purchase to download. The download is free but you need to pay $4.99/month subscription to use, or $99.99 for a "lifetime subscription". The code's are all there. The author just doesn't want you to use it.
Ahh, DRM-ed cars. I should have seen that one coming, really.
Re: My car’s OTA update broke Android Auto
#70Auto manufacturers need to realize that one bad software experience means lost sales of entire cars. Fail to provide a good experience at the cost of your brand for years to come.
We just sold our 2025 Subaru Outback specifically because the software experience was bad. To exit a climate control modal on the screen you have to find and tap a tiny red "X" box in the furthest corner of the screen from the steering wheel.
While that particular issue isn't solvable, I am open to any advice on coding tools that might allow one to unlock other settings or make changes like "ensure auto-stop is fully disabled across restarts and drivers".