• mozz@mbin.grits.dev
    link
    fedilink
    arrow-up
    5
    arrow-down
    3
    ·
    1 month ago

    Hm, maybe I am misinformed then. I haven’t used Android in a few years and I just remember being very struck by how enthusiastic iOS was, when I started using it, about smacking down apps that wanted to do something sketchy and how absolutely appalling were the app permissions choices I was faced with on Android.

    • cm0002@lemmy.world
      link
      fedilink
      arrow-up
      6
      ·
      edit-2
      1 month ago

      Android also has fantastic notification controls on a per app basis compared to iOS. I can pop into settings and disable an apps “Marketing” channel, but continue to allow it to have its “Important notifications” channel for example.

      Here’s Nextdoors notification channel settings:

      I can disable any one of these channels independently, and then it goes a bit further

      Tapping on a channel also allows you to set individual settings, maybe I want NDs “Announcement” notifications, but I want them to be silent, but maybe I still want them to popup on screen while I’m actively using my phone

      Ofc, it’s still dependent on individual apps to implement their side properly, but when they do its amazing

    • Russ@bitforged.space
      link
      fedilink
      English
      arrow-up
      1
      ·
      1 month ago

      You’re thinking of install-time permissions, which technically does still exist, but pretty much most of the permissions you’d actually care about are runtime (or special) permissions - the application must request these from the user.

      There are three main types of permissions on Android:

      • Install-time, these are permissions granted to an application upon installation
        • In this group is also signature-level permissions, which are only granted to applications that are signed by the same party as the OS itself (usually your OEM)
      • Runtime permissions (also known as “Dangerous permissions” within Android internally), which are permissions that the application must request from the user. The system draws the permissions dialog, not the application itself. Permission can also be granted one-time only, or permanently (unless the user revokes the permission)
      • Special permissions, which also need to be requested by the application - except for these the system will not draw a permissions dialog, instead the application must send the user to the “Special App Access” menu within system settings, and the user must turn on the permission there. The best way I can describe these types of permissions is, “permission that the user really must think about before granting” - such as giving an app the ability to bypass DND rules, drawing over other apps, installing APKs from unknown sources, accessing all device files, etc. IIRC, Google also requires that developers provide justification for requesting these permissions when submitting to the Google Play Store as well.

      Runtime permissions were introduced in Android 6.0, which was released in 2015, I am not sure when the special permission system was implemented however.