Post #1440931
2026-04-19 18:44 UTC
Replies (2)
-
@SylvieLorxu@chaos.social 2026-04-19 19:00
For others who have to deal with this nonsense, I've found the easiest way to get your fingerprint for your IzzyOnDroid and F-Droid builds to be the following curl command: ``` export INDEX_V2_URL="https://apt.izzysoft.de/fdroid/repo/index-v2.json" # IzzyOnDroid export INDEX_V2_URL="https://f-droid.org/repo/index-v2.json" # F-Droid export APP_NAME="your.package.name" curl -s "${INDEX_V2_URL}" | jq -r ".packages.\"${APP_NAME}\".metadata.preferredSigner" | tr [:lower:] [:upper:] | sed 's/../&:/g; s/:$//' ```
-
@d0gb3r7@mastodon.social 2026-04-19 20:32
@SylvieLorxu thanks for dealing with this shit on behalf of your apps' users! (had this exact f.u. moment when they started asking for ID verification one or two years ago 😑)