You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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!
The text was updated successfully, but these errors were encountered:
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!
The text was updated successfully, but these errors were encountered: