zyrouge / symphony

🎵 Lightweight, elegant music player for Android 9+.
https://zyrouge.github.io/symphony/
GNU Affero General Public License v3.0
1.27k stars 81 forks source link

[Feature] Remove DependencyInfoBlock for F-Droid #637

Closed linsui closed 2 weeks ago

linsui commented 2 weeks ago

Description

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.

Solution

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!

Alternatives

No response

Additional Context

No response

Contribution Guidelines

linsui commented 2 weeks ago

Thanks!