• @SuperSpruce@lemmy.zip
    link
    fedilink
    English
    327 days ago

    How does this affect “second-party” apps (i.e. apps you have created yourself)? Are you still allowed to go to Android studio, make an APK, transfer it to your own phone, and install that app? If no, this spells the death of experimental indie developers on Android.

    • @progandy@feddit.org
      link
      fedilink
      English
      16 days ago

      They might copy from apple. 3 apps with a self signed cert that needs to be renewed every week…

    • @nutsack@lemmy.dbzer0.com
      link
      fedilink
      English
      24
      edit-2
      7 days ago

      yes. from what I understand, you will get a developer key from Google, and then you will sign your APK with your key.

      you’ll still be able to sideload apps that have been signed with developer keys. the main point here is that Google is forcing the developer to identify themselves.

      • Dr. Moose
        link
        fedilink
        English
        197 days ago

        You don’t need to sign anything just turn off play protect with 1 adb command:

        adb shell settings get global package_verifier_user_consent
        adb shell settings put global package_verifier_user_consent -1  # disable Play Protect
        
          • Dr. Moose
            link
            fedilink
            English
            16 days ago

            One gets the current value to verify it and another actually sets a new value. It’s the way these commands are usually shared.

          • Dr. Moose
            link
            fedilink
            English
            16 days ago

            Yes it modifies the phone not the app and you can re-enable it anytime with 1 instead of -1