Closed licaon-kter closed 2 weeks ago
ref: https://gitlab.com/fdroid/checkupdates-bot-fdroiddata/-/jobs/8274423746#L1023
We find that there is a DependencyInfoBlock in your APK.
DependencyInfoBlock
It's a Frosting block in the signing block.
It's added by AGP and encrypted with the Google public key so it can't be read by anyone else except Google. You can read more about it here and here.
While this was added a while ago, we were only enforcing it for new apps, and recently we started scanning updates too.
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!
Hello,
I didn't know about this thing.
I updated the code and released the v2.4.4 that contains this modification.
Thank you :)
thanks
ref: https://gitlab.com/fdroid/checkupdates-bot-fdroiddata/-/jobs/8274423746#L1023
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 encrypted with the Google public key so it can't be read by anyone else except Google. You can read more about it here and here.
While this was added a while ago, we were only enforcing it for new apps, and recently we started scanning updates too.
Could you please disable it with the following code?
Thanks!