-
Notifications
You must be signed in to change notification settings - Fork 7
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Question on permissions & services #65
Comments
Thank you for the info :) READ_PHONE_STATE -> i still can't find where this came from yet 😅 Android studio can't link it with any library and i have not declared it myself anywhere Other permissions come from diffrent libraries for diffrent reasons if its of any use for you i can provide a list with what library uses them & why. |
android.permission.QUERY_ALL_PACKAGES: required to know which apps are installed, eg. for usage stats
android.permission.SYSTEM_ALERT_WINDOW: to show a dialog over other apps eg. when scrolling limit is over Thanks a lot! |
Here is the other permissions For ACCESS NETWORK STATE its required by an external dependency and is never used |
Thanks! Added the descriptions. Two remarks:
You should not request it before it's implemented 😉
Please take a look at Removing Unwanted Manifest Permissions With tools:node and give it a try then. If it's never used it does not hurt to remove it. |
Congrats to the new release! Since your last one, the scanners at IzzyOnDroid received a huge overhaul (see: Ramping up security: additional APK checks are in place with the IzzyOnDroid repo), and for your new release reported:
So may I please ask for some clarifications:
QUERY_ALL_PACKAGES
is clear and ha been added to the app's "green list" nowAs for
DEPENDENCY_INFO_BLOCK
, that can easily be avoided with a tiny adjustment in 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.
So the current status:
Thanks in advance for your clarifications!
The text was updated successfully, but these errors were encountered: