-
Notifications
You must be signed in to change notification settings - Fork 24
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
Certificate issue #16
Comments
@TheAlphaApp any word? |
I'm currently swamped with tasks. However, I have plans to give this app a refresh. I'll delve into it and should have some updates for the app with a release key within a week. Thank you. |
Thanks a lot! And yeah, a wide-spread thing that with those swamps… A week is totally fine, even if it's "a good week" or so 😉 |
I am pleased to announce the release of a new version, accompanied by a signed APK. I believe this update addresses the reported issue; however, if further action is required, please advise accordingly. |
Thanks! And that looks good:
Now let's look at the two lines with the exclamation marks: storage access is for export/import I guess. If it's just a single (or a few) file(s), maybe you could switch to using SAF (Storage Access Framework) instead? Then if one wants to export, Android's file picker would pop up to pick a location, which gives the app access to that. So no extra storage permissions required. Supported since Android 5, which would match your As for 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. I've pinned your new (release) certificate now and added a "release note" informing readers they have to uninstall and reinstall in order to upgrade from 1.2.5 and earlier. The older versions (signed with the debug key) will be removed in about a month, and then their signing key as well. Oh, should you wonder about
please see my Fastlane Cheat Sheet. A useful thing: you have app description and graphics here in your repo so you can make sure they match the latest release – and my updater pulls them along when pulling a new release. If you want I can send you a PR with a starter kit with what is set up here currently. As for |
A scan (see here for details and background) just revealed the APKs at your releases are signed using a debug key. As that has security implications, may I ask you to please switch to a proper release key, and provide the corresponding APK signed with it? Thanks in advance!
The text was updated successfully, but these errors were encountered: