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?

  • @BorgDrone
    link
    English
    131 year ago

    I’m a mobile dev. iOS is just a lot more powerful, both software wise as hardware wise. There is so much shit you just can’t do on Android.

    • Victron
      link
      fedilink
      English
      341 year ago

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

      • @BorgDrone
        link
        English
        51 year ago

        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.

        • @owenfromcanada@lemmy.world
          link
          fedilink
          English
          21 year ago

          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.

          • @BorgDrone
            link
            English
            31 year ago

            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.

          • @BorgDrone
            link
            English
            21 year ago

            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.

            • @notenoughbutter@lemmy.ml
              link
              fedilink
              English
              11 year ago

              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

              • @BorgDrone
                link
                English
                11 year ago

                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.

        • Victron
          link
          fedilink
          English
          1
          edit-2
          1 year ago

          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.

      • @rho50@lemmy.nz
        link
        fedilink
        English
        31 year ago

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

    • @rho50@lemmy.nz
      link
      fedilink
      English
      41 year ago

      Yeah, like shake-to-undo. I was dumbfounded when I discovered that the ability to undo was not implemented on Android.

    • Dudewitbow
      link
      fedilink
      English
      11 year ago

      Isnt that wholely dependant on what kind of dev and project youre working on. For example, browser devs would diaagree given that all browsers on IOS must use Webkit.