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
Checking with the latest app description, I could already clarify storage and QUERY_ALL_PACKAGES:
android.permission.READ_EXTERNAL_STORAGE: needed for file managementandroid.permission.MANAGE_EXTERNAL_STORAGE: needed for file management on higher Android versionsandroid.permission.QUERY_ALL_PACKAGES: needed to show/group apps
Could you please clarify the others?
As for DEPENDENCY_INFO_BLOCK, that can easily be avoided with a minor addition to your build.gradle:
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. More details can be found e.g. here: Ramping up security: additional APK checks are in place with the IzzyOnDroid repo.
Thanks in advance!
The text was updated successfully, but these errors were encountered:
ACCESS_FINE_LOCATION, ACCESS_COARSE_LOCATION > needed to identify nearby devices for transfer tab ref
REQUEST_DELETE_PACKAGES > needed by analysis manager to uninstall apps
READ_PHONE_STATE > needed to generate unique identifier (device id) for a device that persists even when device is cleaned. This is used to manage user's purchase / subscription without capturing their private data such as email id.
Your recent update triggered some of the newer scanners at IzzyOnDroid (btw, no IoD a badge in your Readme?):
Checking with the latest app description, I could already clarify storage and
QUERY_ALL_PACKAGES
:Could you please clarify the others?
As for
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!
The text was updated successfully, but these errors were encountered: