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
Could you please clarify what those permissions are needed for? Camera is clear (QR code scanning). Storage read access also, thanks to the app description (import QR codes from images). I assume read/write contacts is to create/import QR codes with contact information?
As for the DEPENDENCY_INFO_BLOCK, that can easily be avoided:
android {
dependenciesInfo {
// Disables dependency metadata when building APKs.
includeInApk =false// Disables dependency metadata when building Android App Bundles.
includeInBundle =false
}
}
For some background: that BLOB is supposed to be just a binary representation of your app's dependency tree. But as it's encrypted with a public key belonging to Google, only Google can read it – and nobody else can even verify what it really contains.
Thanks in advance!
The text was updated successfully, but these errors were encountered:
My scanner just reported on your latest release:
Could you please clarify what those permissions are needed for? Camera is clear (QR code scanning). Storage read access also, thanks to the app description (import QR codes from images). I assume read/write contacts is to create/import QR codes with contact information?
As for the
DEPENDENCY_INFO_BLOCK
, that can easily be avoided:For some background: that BLOB is supposed to be just a binary representation of your app's dependency tree. But as it's encrypted with a public key belonging to Google, only Google can read it – and nobody else can even verify what it really contains.
Thanks in advance!
The text was updated successfully, but these errors were encountered: