Open IzzySoft opened 4 months ago
Hi,
Concerning storage permissions, I've just added them to the app's green list – please confirm I got that right:
Yes. NFCGate has not been adapted to storage changes in newer Android versions yet, that's why these permissions are still there. They are used for exporting (write) and importing (read) pcapng files of captured communication in relay and on-device capture mode, and were needed at the time of development of these features.
Regarding DEPENDENCY_INFO_BLOCK
, that's new information to me. Thanks for the tip of removing it, I guess this block does not make much sense if we do not upload the APK to GPlay.
has not been adapted to storage changes in newer Android versions yet
Once that's the case, the updater here should warn us their green-listing is obsolete and we can remove them again :wink:
I guess this block does not make much sense if we do not upload the APK to GPlay.
With Play being the only place able to read them: nope, no really use for that. But you know how the folks are there, they always think they're the only ones…
The scanner at IoD just reported:
Concerning storage permissions, I've just added them to the app's green list – please confirm I got that right:
As for
DEPENDENCY_INFO_BLOCK
, that can be easily avoided with a tiny adjustment to yourbuild.gradle
: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. More details can be found e.g. here: Ramping up security: additional APK checks are in place with the IzzyOnDroid repo.
Thanks in advance!