Other than blue bubbles, why do you use iPhone?

RealNooshie@lemmy.world to Asklemmy@lemmy.ml – 175 points –

Yes, I'm the one in the group DM that turns the bubbles green, I'm sorry.

But other than that, I don't hear many other reasons why people actually prefer iPhones over Androids. What other reasons are there?

354

You are viewing a single comment

As a user, there's so much shit you can't do on iOS.

For me as a developer by far the biggest restriction on Android is raw performance, it's just so much slower than iOS, even the high-end phones.

Next is the lack of proper updates, if you build an app for Android and you want to reach a decent audience you have to target an ancient version of Android since hardly anyone ever gets OS updates so you can't use any of the newest functionality.

Combined with this is the lack of widely supported APIs. We're doing a bunch of GPU compute, on iOS this is no problem: you can use Metal Compute and it's supported on iPhone 6S and later (which is practically every iPhone still in use). On Android there is nothing comparable. There is RenderScript which is deprecated and lacks a lot of functionality, it's also slow and you can never be sure it actually runs on the GPU (it can fall back to CPU on certain devices and you have zero control over this). Newer OpenGL ES versions support compute, but it's only available on a handful of devices, same goes for Vulkan. Even then, which features are supported differs per device and per GPU. Sometimes there are even different versions of the 'same' device (at least: same marketing name) with completely different internals and different GPUs (I'm looking at you Samsung).

Android is a fucking mess.

Yeah, if you're working on really high-performance apps, I can see why iOS would be easier. I'm guessing it's because the hardware that runs iOS is exclusive, so they can create simpler and more reliable APIs for that kind of thing. Android supports pretty much anything, so consistent APIs and performance is much more difficult.

But I'd posit that your development case is somewhat narrow. Tons of apps only rely on more basic APIs and base-system components--where computations are happening (CPU vs GPU) isn't even considered, and doesn't matter. There's still more variation in performance, but it's usually negligible.

I can certainly sympathize with your case, though.

I’m guessing it’s because the hardware that runs iOS is exclusive, so they can create simpler and more reliable APIs for that kind of thing

There is the advantage that they control both the hardware and software, but it's also that the hardware is several years ahead of the competition. Especially CPU and GPU performance. Apple's SoC's are just crazy fast, and they do it while using very little power as well. It's really impressive.

I don't get the performance argument, even midrange phones are powerful enough to run most apps

You got that backwards. The the apps are made to be able to run on the phone, not the other way around. For example: the app I work on works reasonably well on Android but that’s mainly because we downgraded it compared to the iOS version. It runs at much lower resolution and frame rate on Android.

wait, you don't write universal apps?
you need to write apps for specific device needs?
that doesn't sound right
I thought you just need to write apps for armv8 and with a certain language like kotlin swift flutter or whatever

also which app are you talking about? Lemmy check

hehe Lemmy

You write apps to target the majority of devices on a specific platform, as you want your app to work for most people. Since the average Android phone is a piece of shit, your app can’t be too demanding. It’s not about the language or instruction set, it’s about how much work you try to get your app to do per frame.

I'm a web developer, but work with people that do mobile apps, and I'm well aware of the differences between both OSes. But as an end user, I couldn't care less. I have used both iOS and Android devices, and currently only own Android ones.

I don't consider myself a power user, but the apps I enjoy in Android are miles ahead of their iOS counterparts; yes, I get many of them via alternative stores or github repos, so I'm definitely not a regular user (I work with linux, so maybe I'm THAT kind of guy lol). I can tolerate some annoyances in exchange of the freedom I get and the vast amount of apps, but I don't expect regular user to do the same.

Also, I absolutely see the appeal of iOS devices for most people, they're snappy and have no surprises. My wife and children love them.

Most of those things are deliberate restrictions on Apple's part, rather than technical ones (it is really shitty though).