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 their usage? Thanks in advance! (and if you want the other permissions accompanied by an explanation as well, I'll welcome those too 😉)
Ah, that DEPENDENCY_INFO_BLOCK is easily solved by the way:
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.
The text was updated successfully, but these errors were encountered:
usesCleartextTraffic is used for connections in the local network
READ_EXTERNAL_STORAGE is of course very dang… err, skip that, we're talking about a terminal app here. Sorry, I just quoted the log.
CAMERA is required to connect to any USB_CLASS_VIDEO device since Android 9
I've put that in for now, so these are thereby on the "green list" for your app.
Is it bad???
Can you tell? Just look what's inside. Wait, you can't? How's that? Oh, only Google can as it's encrypted with their key? Well, they'd never collect location data without your consent, so they'd certainly not put something strange in here if they say they don't, would they? Apologies for the sarkasm, but: it's a "proprietary blob", and in the FOSS world such are questionable at best. So I'd suggest you keep this out of the APKs here – and if you want, keep it in for the AABs shipped to play. Would that work for you?
For the latest release, my scanner just reported:
Could you please clarify their usage? Thanks in advance! (and if you want the other permissions accompanied by an explanation as well, I'll welcome those too 😉)
Ah, that
DEPENDENCY_INFO_BLOCK
is easily solved by the way: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.
The text was updated successfully, but these errors were encountered: