Open IzzySoft opened 1 month ago
The Query all packages permission is for per-app proxy feature. Camera permission is for scanning qr code to import configs and the read external storage is for importing and exporting backup files (not sure about the last one)
Thanks! Added the first two to the app's "green list". As for storage: export/import would just need a single location, right? Wouldn't that be a classic candidate for SAF (Storage Access Framework), so no explicit (legacy) storage permission is needed?
The scanners here at IzzyOnDroid just yielded:
android.net.VpnService
is clear (proxy uses Android's VPN service), so I've already added that to the app's "green list". But could you please clarify what those permissions are needed for?Concerning
DEPENDENCY_INFO_BLOCK
: that can easily be avoided with a minor addition 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!