InfinityLoop1308 / PipePipe

A FLOSS Android app to let you browse YouTube, NicoNico and BiliBili freely.
GNU General Public License v3.0
2.19k stars 47 forks source link

[Feature request] Remove DependencyInfoBlock for F-Droid #495

Closed linsui closed 1 week ago

linsui commented 3 weeks ago

Checklist (Your issue will be automatically closed if you delete this part)


We find that there is a DependencyInfoBlock in your apk. It's a Frosting block in the signing block. It's added by AGP and signed by Google's public key so it can't be read by anyone else except Google.

Could you please disable it with the following code?

android {
    dependenciesInfo {
        // Disables dependency metadata when building APKs.
        includeInApk = false
        // Disables dependency metadata when building Android App Bundles.
        includeInBundle = false
    }
}

Thanks!

InfinityLoop1308 commented 1 week ago

Done in 4.0.0

linsui commented 1 week ago

Thanks!