Checklist (Your issue will be automatically closed if you delete this part)
[x] I make sure that there are no existing issues - open or closed - which I could contribute my information to.
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
}
}
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?
Thanks!