Google claims that privacy is a priority, and perhaps it is, but we can’t deny there’s an essential conflict of interest between protecting your privacy and Google being an advertising company.

Recent events in this space include Google’s new Ad Topics framework, which purports to offer users more control. I feel it’s an improvement over cookies, but having my device participate in tracking me is backwards. After all, my device should be protecting my privacy first, not implementing features to track my behavior.

Data “nutrition labels” in the Play Store are a step forward by encouraging proactively a discussion about how user data is processed and used. On the other hand, recent attempts at DRM for the web in Chrome remind us that the main vendor behind Android doesn’t always have user interests at heart.

Is Android doing enough to keep your data safe? If not, what steps could reasonably improve the situation?

In sharing your opinion, please take care to distinguish between Google the company and Android the product. While related, given Google may have privacy issues in one line of business doesn’t necessarily define privacy practices on the Android platform. Also, another interesting angle includes what’s best for you versus what’s best for users as a whole. For example, a privacy feature, to be successful, needs to be reasonably understandable by most users and offer a net benefit without complicating the platform for casual users.

  • @Knusper@feddit.de
    link
    fedilink
    English
    128 months ago

    Some years ago, when Google introduced the permission system with Android Marshmallow, I watched this developer conference presentation. At the end of it, a visitor asked whether there’s also a permission to prevent internet access.

    The Google guy who had presented it, responded that there was not, because with the other permissions in place, no app would have access to data that shouldn’t be on the internet.

    I’d wager every single person in that room was techy enough to know that this was complete horseshit, including the presenter, but that did not stop him from pressing it out his grinning teeth.

    To this day, when you install a third-party keyboard app, you either trust it with all your passwords and everything you type + internet access, or you don’t use one, even though 99% of third-party keyboards don’t need internet.
    Similarly, you could allow camera apps etc. to not need to ask for permission, if they don’t use the internet, thereby reducing user fatigue.

    Instead, Google decided to compromise security of the Android platform, I imagine, because they want apps to ship with (their) ads and trackers.

    • @henfredemarsOP
      link
      English
      88 months ago

      This is really insightful. I’ve always questioned the lack of an Internet permission. Keyboard applications are a really good example of apps that don’t need internet access.

      But without internet, no telemetry, no advertising. I think that’s a compromise Google cannot make.

      Internet access should absolutely be a user controlled permission.

    • @skuzz@discuss.tchncs.de
      link
      fedilink
      English
      3
      edit-2
      8 months ago

      While not disagreeing with you, Android does have an Internet permission in the manifest. For an application to use network access, it must define both:

      uses-permission android:name="android.permission.INTERNET"
      uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"
      
      

      Sauce: https://developer.android.com/develop/connectivity/network-ops/connecting

      So if a keyboard is open source, one could quickly validate if the keyboard app actually is requesting to have Internet access or not, and one could choose a keyboard based on it not using these permissions.

      (Edit: Formatting.)

      • @Knusper@feddit.de
        link
        fedilink
        English
        68 months ago

        Yeah, I was actually aware of that, while writing the above. The AndroidManifest.xml is zipped into the APK-file, so even for closed-source apps, you should be able to check it.

        Problem is, of course, that it doesn’t help less techy folks, but also that you can’t prevent app updates from suddenly adding internet access.

        And that you can’t take it away from apps that do claim to need it. At some point, I had some sort of root/XPosed/whatever setup, where I could take this permission away from apps, but because this was a thing that couldn’t happen normally, they all just flopped over sideways, saying things like “Please connect to WiFi 🥺”.

        • @skuzz@discuss.tchncs.de
          link
          fedilink
          English
          4
          edit-2
          8 months ago

          Good callout that it could be sneaked in later without alert. I hadn’t considered that perspective. Another reason to be always wary of app updates and the auto-update model.