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
I guess the Internet permission is for the weather widget and the RSS feeds only. But why does it need cleartext traffic? What is AccessibilityService used for? 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 – and looking forward to your reply!
The text was updated successfully, but these errors were encountered:
A release is planned, but there are still features in the Play Store version that are missing from the rewrite. Once the majority of the features are ported, beta releases will start to appear on Google Play.
Regarding the AccessibilityService, that is used to tell the system to lock the device when double tapping the home screen (you can turn on the option, and service in the settings if you wish to, but it is disabled by default for obvious reasons).
About the clear text flag, I genuinely do not remember what might be the reason why it still is part of the manifest entry. It might be something that I forgot to remove from when I was working on the weather widget. I'll take a look and see if it is still needed and where it might be used, if not remove it. I'll mark this as pending in the meantime until I have more info.
Thanks a lot! If you drop me a note once the first "real release" (not "pre") becomes available, I can see if we can add it to the IzzyOnDroid repo – so it's also easily accessible for those folks not using Goggle's services.
Hello and all the best to you and thank you for the beautiful launcher, and can I ask if there will be a publication on the IzzyOnDroid repository, since I live in Russia and YouTube is already blocked here and there is a possibility of blocking Play Market @IzzySoft@albu-razvan ?
I wonder that all releases are still just pre-releases, while the app is already listed at PlayStore. Are any "proper releases" planned?
While here, I just sent the latest APK (the non-debug one) through our scanners, which yielded:
I guess the Internet permission is for the weather widget and the RSS feeds only. But why does it need cleartext traffic? What is AccessibilityService used for? 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 – and looking forward to your reply!
The text was updated successfully, but these errors were encountered: